Unverified Commit a9f385bb authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

Reduce log verbosity by removing individual used files (#41788)

parent 5975e86f
...@@ -101,7 +101,6 @@ class StdoutHandler { ...@@ -101,7 +101,6 @@ class StdoutHandler {
bool _badState = false; bool _badState = false;
void handler(String message) { void handler(String message) {
printTrace('-> $message');
if (_badState) { if (_badState) {
return; return;
} }
...@@ -525,7 +524,6 @@ class ResidentCompiler { ...@@ -525,7 +524,6 @@ class ResidentCompiler {
printTrace('<- recompile $mainUri$inputKey'); printTrace('<- recompile $mainUri$inputKey');
for (Uri fileUri in request.invalidatedFiles) { for (Uri fileUri in request.invalidatedFiles) {
_server.stdin.writeln(_mapFileUri(fileUri.toString(), packageUriMapper)); _server.stdin.writeln(_mapFileUri(fileUri.toString(), packageUriMapper));
printTrace('<- ${_mapFileUri(fileUri.toString(), packageUriMapper)}');
} }
_server.stdin.writeln(inputKey); _server.stdin.writeln(inputKey);
printTrace('<- $inputKey'); printTrace('<- $inputKey');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment