Commit e2847c72 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Fix type passed to printError() (#7416)

Fixes #7413
parent 8af5520f
......@@ -111,7 +111,7 @@ class HotRunner extends ResidentRunner {
}
} catch (error) {
printStatus('Error detected in application source code:', emphasis: true);
printError(error);
printError('$error');
return false;
}
return true;
......
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