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

Unified Diff: lib/src/options.dart

Issue 1136293005: fixes #187, implicit html, as well as server messages not printing (Closed) Base URL: git@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/src/analysis_context.dart ('k') | no next file » | 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 d37957245d1b811bad316b15cf050a7abcdf545a..6861a9030c6f91e286f4ed50d650e4a6c5fc78be 100644
--- a/lib/src/options.dart
+++ b/lib/src/options.dart
@@ -260,6 +260,7 @@ CompilerOptions parseOptions(List<String> argv) {
if (enableHashing == null) {
enableHashing = serverMode;
}
+ // TODO(jmesserly): shouldn't level always default to warning?
vsm 2015/05/19 20:41:08 Eventually, yes. I bumped this up as I didn't wan
var logLevel = serverMode ? Level.WARNING : Level.SEVERE;
var levelName = args['log'];
if (levelName != null) {
« no previous file with comments | « lib/src/analysis_context.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698