Reduce log client logging by default

We had been running at debug level which is incredibly verbose. Remove
the -d flag. This will cause the logs which are logged to go to
stdout/err which should mean that upstart (or whatever init system) will
deal with them for us.

We should properly clean this up so that debug logging is useful again
in the long term.

Change-Id: I613c135ea56507d083df8c66e8846c6fbfa8b2ed
This commit is contained in:
Clark Boylan 2016-09-27 17:17:13 -07:00
parent 277cc29e50
commit 1f0f91fdbb
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ DESC="Jenkins Log Client"
NAME=jenkins-log-client
DAEMON=/usr/local/bin/log-gearman-client.py
PIDFILE=/var/run/$NAME/$NAME.pid
DAEMON_ARGS="-c /etc/logprocessor/jenkins-log-client.yaml -d /var/log/logprocessor/log-client-debug.log -p $PIDFILE"
DAEMON_ARGS="-c /etc/logprocessor/jenkins-log-client.yaml -p $PIDFILE"
SCRIPTNAME=/etc/init.d/$NAME
USER=logprocessor