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

Unified Diff: Tools/Scripts/webkitpy/test/printer.py

Issue 564173003: [test-webkitpy] Make more than two -v options to be also verbose. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/Scripts/webkitpy/test/printer.py
diff --git a/Tools/Scripts/webkitpy/test/printer.py b/Tools/Scripts/webkitpy/test/printer.py
index 24d55348b3ecda543c76180e0aab4c68aa7d7c45..c12cc295a97a26e53b36fb6e15e3d3f850e00d05 100644
--- a/Tools/Scripts/webkitpy/test/printer.py
+++ b/Tools/Scripts/webkitpy/test/printer.py
@@ -55,10 +55,10 @@ class Printer(object):
log_level = logging.INFO
if options.quiet:
log_level = logging.WARNING
- elif options.verbose == 2:
+ elif options.verbose >= 2:
log_level = logging.DEBUG
- self.meter = MeteredStream(self.stream, (options.verbose == 2),
+ self.meter = MeteredStream(self.stream, (options.verbose >= 2),
number_of_columns=SystemHost().platform.terminal_width())
handler = logging.StreamHandler(self.stream)
« 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