Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
6c77351c
Commit
6c77351c
authored
Nov 27, 2015
by
Alexander Alashkin
Committed by
Sergey Lyubka
Nov 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Verify settings before apply
PUBLISHED_FROM=ca7b6a9814b88b45d893d8e1386faded27305e9c
parent
7c4cda62
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
mongoose.h
mongoose.h
+6
-5
No files found.
mongoose.h
View file @
6c77351c
...
...
@@ -281,9 +281,10 @@ enum cs_log_level {
LL_WARN
=
1
,
LL_INFO
=
2
,
LL_DEBUG
=
3
,
LL_VERBOSE_DEBUG
=
4
,
_LL_MIN
=
-
2
,
_LL_MAX
=
4
,
_LL_MAX
=
5
,
};
#ifndef CS_NDEBUG
...
...
@@ -299,10 +300,10 @@ void cs_log_printf(const char *fmt, ...);
cs_log_printf x; \
}
#define DBG(x) \
if (s_cs_log_level >= LL_
DEBUG) {
\
fprintf(stderr, "%-20s ", __func__); \
cs_log_printf x; \
#define DBG(x)
\
if (s_cs_log_level >= LL_
VERBOSE_DEBUG) {
\
fprintf(stderr, "%-20s ", __func__);
\
cs_log_printf x;
\
}
#else
/* NDEBUG */
...
...
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