Browse Source

Bugfix: logging: Allow up to 4 KB for log lines

Luke Dashjr 12 years ago
parent
commit
307539ec81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      logging.h

+ 1 - 1
logging.h

@@ -26,7 +26,7 @@ extern bool want_per_device_stats;
 /* global log_level, messages with lower or equal prio are logged */
 /* global log_level, messages with lower or equal prio are logged */
 extern int opt_log_level;
 extern int opt_log_level;
 
 
-#define LOGBUFSIZ 256
+#define LOGBUFSIZ 0x1000
 
 
 extern void _applog(int prio, const char *str);
 extern void _applog(int prio, const char *str);