Skip to content

Commit

Permalink
fix initialize of logger in benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
fgregg committed Jan 23, 2023
1 parent baa6071 commit 765a6fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/benchmarks/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def configure_logging() -> None:
log_level = logging.INFO
elif opts.verbose >= 2:
log_level = logging.DEBUG
logging.getLogger().setLevel(log_level)
logging.basicConfig(level=log_level)


def get_true_dupes(data: dict) -> set:
Expand Down

0 comments on commit 765a6fa

Please sign in to comment.