Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
GarethCabournDavies committed Oct 5, 2023
1 parent 411270d commit 6f36438
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/workflows/pycbc_make_offline_search_workflow
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ wf.add_workflow_settings_cli(parser)
args = parser.parse_args()

# By default, we do logging.info, each --verbose adds a level of verbosity
pycbc.init_logging(args.verbose + 1)
logging_level = args.verbose + 1 if args.verbose else logging.INFO
pycbc.init_logging(logging_level)

container = wf.Workflow(args, args.workflow_name)
workflow = wf.Workflow(args, args.workflow_name + '-main')
Expand Down

0 comments on commit 6f36438

Please sign in to comment.