Skip to content

Commit a0ca0d8

Browse files
committed
Reduce logging spam from wheel.
1 parent 7ea4662 commit a0ca0d8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

make_wheels.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import argparse
2+
import logging
23
import io
34
import os
45
import json
@@ -216,6 +217,7 @@ def get_argparser():
216217

217218
def main():
218219
args = get_argparser().parse_args()
220+
logging.getLogger("wheel").setLevel(logging.WARNING)
219221
fetch_and_write_ziglang_wheels(outdir=args.outdir, zig_version=args.version,
220222
wheel_version_suffix=args.suffix, platforms=args.platform)
221223

0 commit comments

Comments
 (0)