Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
e5bbe57f
Commit
e5bbe57f
authored
Feb 25, 2018
by
Daniel Chabrowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cppcoreguidelines-pro-type-member
parent
68f91822
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
14 deletions
+11
-14
log_msg.h
include/spdlog/details/log_msg.h
+3
-5
os.h
include/spdlog/details/os.h
+7
-8
registry.h
include/spdlog/details/registry.h
+1
-1
No files found.
include/spdlog/details/log_msg.h
View file @
e5bbe57f
...
...
@@ -8,7 +8,6 @@
#include "../common.h"
#include "../details/os.h"
#include <string>
#include <utility>
...
...
@@ -21,8 +20,7 @@ struct log_msg
log_msg
()
=
default
;
log_msg
(
const
std
::
string
*
loggers_name
,
level
::
level_enum
lvl
)
:
logger_name
(
loggers_name
),
level
(
lvl
),
msg_id
(
0
)
level
(
lvl
)
{
#ifndef SPDLOG_NO_DATETIME
time
=
os
::
now
();
...
...
@@ -38,13 +36,13 @@ struct log_msg
log_msg
(
log_msg
&&
other
)
=
delete
;
const
std
::
string
*
logger_name
;
const
std
::
string
*
logger_name
{
nullptr
}
;
level
::
level_enum
level
;
log_clock
::
time_point
time
;
size_t
thread_id
;
fmt
::
MemoryWriter
raw
;
fmt
::
MemoryWriter
formatted
;
size_t
msg_id
;
size_t
msg_id
{
0
}
;
};
}
}
include/spdlog/details/os.h
View file @
e5bbe57f
...
...
@@ -81,10 +81,10 @@ inline std::tm localtime(const std::time_t &time_tt)
{
#ifdef _WIN32
std
::
tm
tm
;
std
::
tm
tm
{}
;
localtime_s
(
&
tm
,
&
time_tt
);
#else
std
::
tm
tm
;
std
::
tm
tm
{}
;
localtime_r
(
&
time_tt
,
&
tm
);
#endif
return
tm
;
...
...
@@ -96,15 +96,14 @@ inline std::tm localtime()
return
localtime
(
now_t
);
}
inline
std
::
tm
gmtime
(
const
std
::
time_t
&
time_tt
)
{
#ifdef _WIN32
std
::
tm
tm
;
std
::
tm
tm
{}
;
gmtime_s
(
&
tm
,
&
time_tt
);
#else
std
::
tm
tm
;
std
::
tm
tm
{}
;
gmtime_r
(
&
time_tt
,
&
tm
);
#endif
return
tm
;
...
...
@@ -220,7 +219,7 @@ inline bool file_exists(const filename_t& filename)
#endif
return
(
attribs
!=
INVALID_FILE_ATTRIBUTES
&&
!
(
attribs
&
FILE_ATTRIBUTE_DIRECTORY
));
#else //common linux/unix all have the stat system call
struct
stat
buffer
;
struct
stat
buffer
{}
;
return
(
stat
(
filename
.
c_str
(),
&
buffer
)
==
0
);
#endif
}
...
...
@@ -250,11 +249,11 @@ inline size_t filesize(FILE *f)
int
fd
=
fileno
(
f
);
//64 bits(but not in osx or cygwin, where fstat64 is deprecated)
#if !defined(__FreeBSD__) && !defined(__APPLE__) && (defined(__x86_64__) || defined(__ppc64__)) && !defined(__CYGWIN__)
struct
stat64
st
;
struct
stat64
st
{}
;
if
(
fstat64
(
fd
,
&
st
)
==
0
)
return
static_cast
<
size_t
>
(
st
.
st_size
);
#else // unix 32 bits or cygwin
struct
stat
st
;
struct
stat
st
{}
;
if
(
fstat
(
fd
,
&
st
)
==
0
)
return
static_cast
<
size_t
>
(
st
.
st_size
);
#endif
...
...
include/spdlog/details/registry.h
View file @
e5bbe57f
...
...
@@ -213,7 +213,7 @@ private:
size_t
_async_q_size
=
0
;
async_overflow_policy
_overflow_policy
=
async_overflow_policy
::
block_retry
;
std
::
function
<
void
()
>
_worker_warmup_cb
=
nullptr
;
std
::
chrono
::
milliseconds
_flush_interval_ms
;
std
::
chrono
::
milliseconds
_flush_interval_ms
{
0
}
;
std
::
function
<
void
()
>
_worker_teardown_cb
=
nullptr
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment