Previously, the script was very talkative by default. Make the default to be silent for log levels < WARNING and allow logging (at different level) to syslog. Additionally, configure the cronjob to log everything of levels >= INFO to syslog. Signed-off-by: Nils Philippsen <nils@redhat.com>
7 lines
184 B
Bash
Executable file
7 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Don't attempt to combine if syncing the individual logs failed.
|
|
set -e
|
|
|
|
/usr/local/bin/sync-http-logs.py --syslog --syslog-verbosity=2
|
|
/usr/local/bin/combineHttpLogs.sh
|