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

Unified Diff: sdk/lib/_internal/pub/lib/src/log.dart

Issue 301063002: First stab at "pub run" command. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
Index: sdk/lib/_internal/pub/lib/src/log.dart
diff --git a/sdk/lib/_internal/pub/lib/src/log.dart b/sdk/lib/_internal/pub/lib/src/log.dart
index 0b93b3f3df26cee40c5b536b0bb67f05d22ec3c5..178ebd7376824461e52cda4460ce8c003c5ab4a3 100644
--- a/sdk/lib/_internal/pub/lib/src/log.dart
+++ b/sdk/lib/_internal/pub/lib/src/log.dart
@@ -225,6 +225,11 @@ void dumpTranscript() {
/// returned by [callback] completes. If anything else is logged during this
/// (include another call to [progress]) that cancels the progress.
Future progress(String message, Future callback()) {
+ // If messages are not output, don't output progress either.
+ if (_loggers[Level.MESSAGE] == null) {
+ return callback();
nweiz 2014/05/29 19:30:09 Nit: This looks like it can fit on the previous li
Bob Nystrom 2014/05/30 18:17:47 Done.
+ }
+
_stopProgress();
_progress = new Progress(message);
return callback().whenComplete(() {
@@ -333,6 +338,16 @@ void showAll() {
_loggers[Level.FINE] = _logToStderrWithLabel;
}
+/// Sets the verbosity to "error", which only logs errors.
+void showError() {
+ _loggers[Level.ERROR] = _logToStderrWithLabel;
+ _loggers[Level.WARNING] = null;
+ _loggers[Level.MESSAGE] = null;
+ _loggers[Level.IO] = null;
+ _loggers[Level.SOLVER] = null;
+ _loggers[Level.FINE] = null;
+}
+
/// Log function that prints the message to stdout.
void _logToStdout(Entry entry) {
_logToStream(stdout, entry, showLabel: false);

Powered by Google App Engine
This is Rietveld 408576698