Skip to content

Commit ef7ae67

Browse files
author
Jonathan Carter
authored
Merge pull request #98 from diablodale/missing-log-info
fix for verbose logging not working
2 parents b0a5909 + c99de67 commit ef7ae67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zfs-auto-snapshot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ print_log () # level, message, ...
111111
;;
112112
(inf*)
113113
# test -n "$opt_syslog" && logger -t "$opt_prefix" -p daemon.info $*
114-
test -z ${opt_quiet+x} && test -n "$opt_verbose" && echo $*
114+
test -z "$opt_quiet" && test -n "$opt_verbose" && echo $*
115115
;;
116116
(deb*)
117117
# test -n "$opt_syslog" && logger -t "$opt_prefix" -p daemon.debug $*

0 commit comments

Comments
 (0)