Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(606)

Unified Diff: tools/testing/frogpad/frogpad.py

Issue 9649021: fix log_level (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/frogpad/frogpad.py
diff --git a/tools/testing/frogpad/frogpad.py b/tools/testing/frogpad/frogpad.py
index 91a4bf3847d2f31254879f0f796fe9b330b0ad60..38df92426aaa37094e47bcb4a8c0715c19b47c2f 100755
--- a/tools/testing/frogpad/frogpad.py
+++ b/tools/testing/frogpad/frogpad.py
@@ -345,7 +345,7 @@ def run_command(args):
close_fds=True)
(stdout, stderr) = child.communicate()
for line in stderr.splitlines():
- logging.info(level, '%s: %s', args[0], line)
+ logging.info(log_level, '%s: %s', args[0], line)
exitcode = child.wait()
if exitcode:
msg = "FAILURE (exit_code=%d): '%s'" % (exit_code, command)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698