This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
rtpengine
mirror of
https://github.com/sipwise/rtpengine
Watch
1
Star
1
Fork
0
Code
Issues
0
Projects
0
Releases
822
Wiki
Activity
Browse Source
increase default log level for debug builds
pull/23/head
Richard Fuchs
12 years ago
parent
58940b5018
commit
8f4e3451f4
1 changed files
with
5 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-0
daemon/log.c
+ 5
- 0
daemon/log.c
View File
@ -9,7 +9,12 @@
struct
log_info
__thread
log_info
;
#
ifndef __DEBUG
volatile
gint
log_level
=
LOG_INFO
;
#
else
volatile
gint
log_level
=
LOG_DEBUG
;
#
endif
#
ifndef MAX_LOG_LINE_LENGTH
#
define MAX_LOG_LINE_LENGTH 500
#
endif
Write
Preview
Loading…
Cancel
Save