Skip to content
Snippets Groups Projects
Commit 32ced8b6 authored by Michael's avatar Michael
Browse files

Changed string template in logging calls

parent 2810a191
No related branches found
No related tags found
No related merge requests found
......@@ -58,9 +58,9 @@ def parse_arguments(logger):
raise SystemExit("script stopped")
if args.verbose > 1:
logger.debug("database: {}".format(args.database))
logger.debug("dry-run: {}".format(args.dry_run))
logger.debug("config file: {}".format(config_file))
logger.debug("database: %s", args.database)
logger.debug("dry-run: %s", args.dry_run)
logger.debug("config file: %s", config_file)
# Add here your own options and parameters
return (args, config_file)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment