fix: dry run logging appears in console
Dry run messages like "Enabling dry run" are logged with log level INFO. However, log level info messages were only being shown when the verbose
flag was used. This meant that the dry run appeared to work only when both --dry-run
and --verbose
were used.
Set logging output to INFO level if the user enables either --dry-run
or --verbose
.
This would fix #34 (closed)