This website works better with JavaScript.
Home
Explore
Help
Sign In
Immanuel
/
btpd
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Enable all logging if DEBUG is defined.
master
Richard Nyberg
19 years ago
parent
89b0b8b359
commit
a8817eee1a
1 changed files
with
5 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-1
btpd/btpd.c
+ 5
- 1
btpd/btpd.c
View File
@@ -109,7 +109,11 @@ btpd_init(void)
btpd.version = BTPD_VERSION;
btpd.logmask = BTPD_L_BTPD | BTPD_L_ERROR;
#ifdef DEBUG
btpd.logmask = BTPD_L_ALL;
#else
btpd.logmask = BTPD_L_BTPD | BTPD_L_ERROR;
#endif
BTPDQ_INIT(&btpd.kids);
Write
Preview
Loading…
Cancel
Save