diff --git a/songbook b/songbook index 40c3958a..73e96de8 100755 --- a/songbook +++ b/songbook @@ -133,9 +133,10 @@ def main(): sb_builder.build_steps(options.steps) except errors.SongbookError as error: LOGGER.error(error) - LOGGER.error( - "Running again with option '-v' may give more information." - ) + if LOGGER.level >= logging.INFO: + LOGGER.error( + "Running again with option '-v' may give more information." + ) sys.exit(1) sys.exit(0)