Skip to content

Commit ae9f84e

Browse files
committed
convert.py: warning goes to stderr and won't hurt the dump output
1 parent 530666f commit ae9f84e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1476,7 +1476,7 @@ def main(args_in: list[str] | None = None) -> None:
14761476
logging.basicConfig(level=logging.DEBUG)
14771477
elif args.dump_single or args.dump:
14781478
# Avoid printing anything besides the dump output
1479-
logging.basicConfig(level=logging.CRITICAL)
1479+
logging.basicConfig(level=logging.WARNING)
14801480
else:
14811481
logging.basicConfig(level=logging.INFO)
14821482

0 commit comments

Comments
 (0)