Skip to content

Commit

Permalink
fixed log level
Browse files Browse the repository at this point in the history
  • Loading branch information
shinzlet committed Oct 4, 2024
1 parent bd6d430 commit 867d32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion softcopy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def main(targets_file, verbose, nprocs):
before it is finished being written to."""

log_level = logging.INFO if not verbose else logging.DEBUG
LOG.setLevel(logging.DEBUG)#log_level)
LOG.setLevel(log_level)
logging.basicConfig(format="[%(asctime)s : %(levelname)s from %(name)s] " + BOLD_SEQ + "%(message)s" + RESET_SEQ)

# Load the yaml at a normal io priority because it is small and likely not on
Expand Down

0 comments on commit 867d32b

Please sign in to comment.