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

This commit is contained in:
Jonah Williams 2019-10-02 12:45:04 -07:00 committed by GitHub
parent 5975e86f00
commit a9f385bbff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -101,7 +101,6 @@ class StdoutHandler {
bool _badState = false;
void handler(String message) {
printTrace('-> $message');
if (_badState) {
return;
}
@ -525,7 +524,6 @@ class ResidentCompiler {
printTrace('<- recompile $mainUri$inputKey');
for (Uri fileUri in request.invalidatedFiles) {
_server.stdin.writeln(_mapFileUri(fileUri.toString(), packageUriMapper));
printTrace('<- ${_mapFileUri(fileUri.toString(), packageUriMapper)}');
}
_server.stdin.writeln(inputKey);
printTrace('<- $inputKey');