Print a "." for each "verbose info" message received from the compiler when not in verbose mode.

R=kasperl@google.com

Review URL: https://codereview.chromium.org//134713003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31886 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/site/try/src/compilation.dart b/site/try/src/compilation.dart
index 8e67d3c..eb82457 100644
--- a/site/try/src/compilation.dart
+++ b/site/try/src/compilation.dart
@@ -243,6 +243,8 @@
     if (kind == 'verbose info') {
       if (verboseCompiler) {
         consolePrint(message);
+      } else {
+        console.appendText('.');
       }
       return;
     }