Skip to content

Commit 29ec458

Browse files
committed
Correct stderr log level
1 parent 84e71c3 commit 29ec458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Android/android.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ async def logcat_task(context, initial_devices):
543543

544544
# Put high-level messages on stderr so they're highlighted in the
545545
# buildbot logs. This will include Python's own stderr.
546-
stream = sys.stderr if priority > LogPriority.WARN else sys.stdout
546+
stream = sys.stderr if priority >= LogPriority.WARN else sys.stdout
547547

548548
# The app's stdout and stderr should be passed through transparently
549549
# to our own corresponding streams.

0 commit comments

Comments
 (0)