We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c10a44 commit 8744c93Copy full SHA for 8744c93
1 file changed
impeller/base/validation.cc
@@ -24,8 +24,12 @@ ValidationLog::ValidationLog() = default;
24
25
ValidationLog::~ValidationLog() {
26
if (sValidationLogsDisabledCount <= 0) {
27
+#if (FLUTTER_RUNTIME_MODE == FLUTTER_RUNTIME_MODE_RELEASE)
28
FML_LOG(ERROR) << stream_.str();
29
ImpellerValidationBreak();
30
+#else
31
+ FML_LOG(FATAL) << stream_.str();
32
+#endif
33
}
34
35
0 commit comments