Skip to content

Commit 3b14145

Browse files
authored
Merge pull request #2777 from ericseppanen/inspect_links_stdout
inspect_links: all logging to stdout
2 parents 792a9a9 + 1576c02 commit 3b14145

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/inspect_links.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ def main():
246246

247247

248248
def setup_logging():
249-
log_stderr = logging.StreamHandler()
250-
logging.getLogger('').addHandler(log_stderr)
249+
log_stdout = logging.StreamHandler(sys.stdout)
250+
logging.getLogger('').addHandler(log_stdout)
251251

252252

253253
if __name__ == "__main__":

0 commit comments

Comments
 (0)