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

Unified Diff: lib/src/options.dart

Issue 1126243004: Summarize only per logging level (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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 | « lib/devc.dart ('k') | lib/src/report.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/options.dart
diff --git a/lib/src/options.dart b/lib/src/options.dart
index 77748c350e9065b65ef62c55533e61302b8a1729..ef4f6d787abb2b32cbaeee3f89e7c5117cbbe8b4 100644
--- a/lib/src/options.dart
+++ b/lib/src/options.dart
@@ -259,7 +259,7 @@ CompilerOptions parseOptions(List<String> argv) {
if (enableHashing == null) {
enableHashing = serverMode;
}
- var logLevel = serverMode ? Level.ALL : Level.SEVERE;
+ var logLevel = serverMode ? Level.WARNING : Level.SEVERE;
var levelName = args['log'];
if (levelName != null) {
levelName = levelName.toUpperCase();
« no previous file with comments | « lib/devc.dart ('k') | lib/src/report.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698