From 76a090d00a927d423d9f1f2a81b693cf714d891e Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 14 Mar 2016 16:23:19 -0700 Subject: [PATCH] Update ASSERTS in flutter engine to use flutter Fixes https://github.com/flutter/flutter/issues/2692 @Hixie --- sky/engine/wtf/Assertions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sky/engine/wtf/Assertions.cpp b/sky/engine/wtf/Assertions.cpp index fa108771dd5..bf2c81f7077 100644 --- a/sky/engine/wtf/Assertions.cpp +++ b/sky/engine/wtf/Assertions.cpp @@ -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); }