diff --git a/xplat/Flipper/Log.cpp b/xplat/Flipper/Log.cpp index f432bc646..661f6d03a 100644 --- a/xplat/Flipper/Log.cpp +++ b/xplat/Flipper/Log.cpp @@ -36,9 +36,9 @@ LogHandlerFunc getLogHandler() { void defaultLogHandler(const std::string& message) { #ifdef __ANDROID__ __android_log_print( - ANDROID_LOG_INFO, "flipper", "flipper: %s", message.c_str()); + ANDROID_LOG_INFO, "flipper", "[flipper] %s", message.c_str()); #else - printf("flipper: %s\n", message.c_str()); + printf("[flipper] %s\n", message.c_str()); #endif }