Skip to content

Commit

Permalink
Update ASSERTS in flutter engine to use flutter
Browse files Browse the repository at this point in the history
  • Loading branch information
eseidelGoogle committed Mar 14, 2016
1 parent c5a86a2 commit 76a090d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/engine/wtf/Assertions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ WTF_ATTRIBUTE_PRINTF(1, 0)
static void vprintf_stderr_common(const char* format, va_list args)
{
#if OS(ANDROID)
__android_log_vprint(ANDROID_LOG_WARN, "WebKit", format, args);
__android_log_vprint(ANDROID_LOG_WARN, "flutter", format, args);
#endif
vfprintf(stderr, format, args);
}
Expand Down

0 comments on commit 76a090d

Please sign in to comment.