Fix log level for callback notification

This commit is contained in:
Nick Chambers 2021-07-18 12:04:53 -05:00
parent 0300365d51
commit 84bb3c13e5
1 changed files with 1 additions and 1 deletions

2
rowbot
View File

@ -92,7 +92,7 @@ run_callbacks() {
shift
while IFS= read -r; do
log_info "running callback %s" "$REPLY"
log_debug "running callback %s" "$REPLY"
"$REPLY" "$@"
(( status |= $? ))
done < <(compgen -A function "$filter")