diff --git a/lib/ui/dart_runtime_hooks.cc b/lib/ui/dart_runtime_hooks.cc index d4a4af61b6b2a..533ed6fb3aa6d 100644 --- a/lib/ui/dart_runtime_hooks.cc +++ b/lib/ui/dart_runtime_hooks.cc @@ -143,11 +143,11 @@ void Logger_PrintString(Dart_NativeArguments args) { // Write to the logcat on Android. const char* tag = Settings::Get().log_tag.c_str(); __android_log_print(ANDROID_LOG_INFO, tag, "%.*s", (int)length, chars); -#elif defined(__APPLE__) || defined(OS_LINUX) - // On iOS and in flutter_tester (on both macOS and Linux, write directly to - // stdout. On iOS, this is redirected to ASL via +#else + // On Fuchsia, iOS and in flutter_tester (on both macOS and Linux), write + // directly to stdout. On iOS, this is redirected to ASL via // RedirectIOConnectionsToSyslog in platform_mac.mm. - // TODO(cbracken) replace with dedicated (non-stdout) logging on iOS. + // TODO(cbracken): replace with dedicated (non-stdout) logging on iOS. fwrite(chars, 1, length, stdout); fputs("\n", stdout); fflush(stdout);