aboutsummaryrefslogtreecommitdiff
path: root/backupninja
diff options
context:
space:
mode:
authorElijah Saxon <elijah@riseup.net>2005-06-30 22:05:33 +0000
committerElijah Saxon <elijah@riseup.net>2005-06-30 22:05:33 +0000
commit030f94dfdccfa6824e1f4e9c7bfdf713cb814d02 (patch)
tree391c7a3bf9a8f5a348df71a5b7e462505b50b94e /backupninja
parent0abb625ac2434a967e04a07020cb042a6f9a9982 (diff)
downloadbackupninja-030f94dfdccfa6824e1f4e9c7bfdf713cb814d02.tar.gz
backupninja-030f94dfdccfa6824e1f4e9c7bfdf713cb814d02.tar.bz2
changed and improved the log file output
Diffstat (limited to 'backupninja')
-rwxr-xr-xbackupninja28
1 files changed, 17 insertions, 11 deletions
diff --git a/backupninja b/backupninja
index 70c6640..6b888cb 100755
--- a/backupninja
+++ b/backupninja
@@ -87,9 +87,13 @@ function printmsg() {
fi
if [ $print -lt $loglevel ]; then
- if [ -w "$logfile" ]; then
- colorize "$typestr$@" >> $logfile
- fi
+ logmsg "$typestr$@"
+ fi
+}
+
+function logmsg() {
+ if [ -w "$logfile" ]; then
+ echo -e `date "+%h %d %H:%M:%S"` "$@" >> $logfile
fi
}
@@ -268,9 +272,9 @@ function process_action() {
# is not set to the current time.
getconf when "$defaultwhen"
if [ "$processnow" == 1 ]; then
- info "running $file because of --now"
+ info ">>>> starting action $file (because of --now)"
elif [ "$when" == "hourly" ]; then
- debug "running $file because 'when = hourly'"
+ info ">>>> starting action $file (because 'when = hourly')"
else
IFS=$'\t\n'
for w in $when; do
@@ -282,7 +286,7 @@ function process_action() {
debug "skipping $file because it is not $w"
return
else
- info "running $file because it is $w"
+ info ">>>> starting action $file (because it is $w)"
fi
done
IFS=$' \t\n'
@@ -314,19 +318,18 @@ function process_action() {
rm $bufferfile
if [ $_fatals != 0 ]; then
msg "*failed* -- $file"
- errormsg="$errormsg\n== failures from $file ==\n\n$ret\n"
+ passthru "Fatal: <<<< finished action $file: FAILED"
elif [ $_errors != 0 ]; then
msg "*error* -- $file"
errormsg="$errormsg\n== errors from $file ==\n\n$ret\n"
+ error "<<<< finished action $file: ERROR"
elif [ $_warnings != 0 ]; then
msg "*warning* -- $file"
errormsg="$errormsg\n== warnings from $file ==\n\n$ret\n"
+ warning "<<<< finished action $file: WARNING"
else
msg "success -- $file"
-# elif [ $retcode == 0 ]; then
-# msg "success -- $file"
-# else
-# msg "unknown -- $file"
+ info "<<<< finished action $file: SUCCESS"
fi
let "fatals += _fatals"
@@ -511,3 +514,6 @@ if [ $doit == 1 ]; then
} | mail $reportemail -s "backupninja: $hostname $subject"
fi
+if [ $actions_run != 0 ]; then
+ info "FINISHED: $actions_run actions run. $fatals fatal. $errors error. $warnings warning."
+fi