blob: 66247e4e13af2b263dab3908f8c4b34d6b8ccc1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Description: Deactivate CUPS' own log rotating as the system already provides a more sophisticated log rotating
Last-Update: 2012-11-27
--- a/conf/cupsd.conf.in
+++ b/conf/cupsd.conf.in
@@ -9,6 +9,10 @@
# for troubleshooting...
LogLevel @CUPS_LOG_LEVEL@
+# Deactivate CUPS' internal logrotating, as we provide a better one, especially
+# LogLevel debug2 gets usable now
+MaxLogSize 0
+
# Only listen for connections from the local machine.
Listen localhost:@DEFAULT_IPP_PORT@
@CUPS_LISTEN_DOMAINSOCKET@
|