Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
thequilo committed Sep 17, 2024
1 parent 7511ca9 commit cd1b4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meeteval/wer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ def run(self):
args = self.parser.parse_args()

# Logging
logging.basicConfig(level=args.log_level.upper(), format='%(levelname)s - %(message)s')
logging.basicConfig(level=args.log_level.upper(), format='%(levelname)s %(message)s', force=True)

if hasattr(args, 'func'):
kwargs = vars(args)
Expand Down

0 comments on commit cd1b4f1

Please sign in to comment.