summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Kampetter <till.kampetter@gmail.com>2016-08-09 18:11:45 +0200
committerDidier Raboud <odyx@debian.org>2018-06-08 15:11:05 +0200
commite4f75581f2c9c3f0d105ca16a0d797961ac49111 (patch)
tree41f3abf83acb964b69476ea51efd76b5fca3d240
parent59fe87c8b60a03d1b1151d5007288738c53c1e94 (diff)
Make log debug history nearly unlimited
Last-Update: 2015-02-10 Patch-Name: log-debug-history-nearly-unlimited.patch
-rw-r--r--scheduler/conf.c2
-rw-r--r--scheduler/conf.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/scheduler/conf.c b/scheduler/conf.c
index 046daa379..4921d8ca4 100644
--- a/scheduler/conf.c
+++ b/scheduler/conf.c
@@ -721,7 +721,7 @@ cupsdReadConfiguration(void)
KeepAlive = TRUE;
KeepAliveTimeout = DEFAULT_KEEPALIVE;
ListenBackLog = SOMAXCONN;
- LogDebugHistory = 200;
+ LogDebugHistory = 99999;
LogFilePerm = CUPS_DEFAULT_LOG_FILE_PERM;
LogLevel = CUPSD_LOG_WARN;
LogTimeFormat = CUPSD_TIME_STANDARD;
diff --git a/scheduler/conf.h b/scheduler/conf.h
index 3a5fe105d..b2289c6a6 100644
--- a/scheduler/conf.h
+++ b/scheduler/conf.h
@@ -160,7 +160,7 @@ VAR cupsd_accesslog_t AccessLogLevel VALUE(CUPSD_ACCESSLOG_ACTIONS);
/* Access log level */
VAR int ClassifyOverride VALUE(0),
/* Allow overrides? */
- LogDebugHistory VALUE(200),
+ LogDebugHistory VALUE(99999),
/* Amount of automatic debug history */
FatalErrors VALUE(CUPSD_FATAL_CONFIG),
/* Which errors are fatal? */