Skip to content

Commit bdfc0e3

Browse files
committed
Set default log level to WARNING
1 parent 4708890 commit bdfc0e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pythonforandroid/toolchain.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"""
88

99
from __future__ import print_function
10+
1011
from pythonforandroid import __version__
1112
from pythonforandroid.build import DEFAULT_NDK_API, DEFAULT_ANDROID_API
1213

@@ -515,8 +516,8 @@ def add_parser(subparsers, *args, **kwargs):
515516

516517
setup_color(args.color)
517518

518-
if args.debug:
519-
logger.setLevel(logging.DEBUG)
519+
# if args.debug:
520+
logger.setLevel(logging.WARNING)
520521

521522
# strip version from requirements, and put them in environ
522523
if hasattr(args, 'requirements'):

0 commit comments

Comments
 (0)