Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
21f0a88d
Commit
21f0a88d
authored
Dec 21, 2018
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update log2
parent
f3e180d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
log2.h
jlib/log2.h
+4
-4
No files found.
jlib/log2.h
View file @
21f0a88d
...
...
@@ -135,7 +135,7 @@ public:
static
const
int
MAX_OUT_BUFF_LEN
=
4096
;
inline
void
dump_hex
(
const
void
*
buff
,
size_t
buff_len
)
inline
void
dump_hex
(
const
void
*
buff
,
size_t
buff_len
,
spdlog
::
level
::
level_enum
level_enum
=
spdlog
::
level
::
warn
)
{
size_t
output_len
=
buff_len
*
6
+
64
;
if
(
output_len
>
MAX_OUT_BUFF_LEN
)
{
...
...
@@ -163,10 +163,10 @@ inline void dump_hex(const void* buff, size_t buff_len)
}
}
JLOG_WARN
(
output
);
spdlog
::
get
(
jlib
::
g_logger_name
)
->
log
(
level_enum
,
output
);
}
inline
void
dump_asc
(
const
void
*
buff
,
size_t
buff_len
,
bool
seperate_with_space
=
true
,
bool
force_new_line
=
true
)
inline
void
dump_asc
(
const
void
*
buff
,
size_t
buff_len
,
bool
seperate_with_space
=
true
,
bool
force_new_line
=
true
,
spdlog
::
level
::
level_enum
level_enum
=
spdlog
::
level
::
warn
)
{
size_t
output_len
=
buff_len
*
6
+
64
;
if
(
output_len
>
MAX_OUT_BUFF_LEN
)
{
...
...
@@ -202,7 +202,7 @@ inline void dump_asc(const void* buff, size_t buff_len, bool seperate_with_space
}
}
JLOG_WARN
(
output
);
spdlog
::
get
(
jlib
::
g_logger_name
)
->
log
(
level_enum
,
output
);
}
#define JLOG_HEX(b, l) jlib::dump_hex(b, l)
...
...
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