|
|
@@ -228,10 +228,10 @@ void Log::WriteRaw(const String& message, bool error)
|
|
|
if (logInstance->quiet_)
|
|
|
{
|
|
|
if (error)
|
|
|
- __android_log_print(ANDROID_LOG_ERROR, "Urho3D", message.CString());
|
|
|
+ __android_log_print(ANDROID_LOG_ERROR, "Atomic", "%s", message.CString());
|
|
|
}
|
|
|
else
|
|
|
- __android_log_print(error ? ANDROID_LOG_ERROR : ANDROID_LOG_INFO, "Urho3D", message.CString());
|
|
|
+ __android_log_print(error ? ANDROID_LOG_ERROR : ANDROID_LOG_INFO, "Atomic", "%s", message.CString());
|
|
|
#elif defined(IOS)
|
|
|
SDL_IOS_LogMessage(message.CString());
|
|
|
#else
|