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

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")