Skip to content

Commit

Permalink
Fix Redot being logged as godot in android logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Spartan322 committed Nov 13, 2024
1 parent 9b54c83 commit 9c21b01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/android/os_android.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ String _remove_symlink(const String &dir) {
class AndroidLogger : public Logger {
public:
virtual void logv(const char *p_format, va_list p_list, bool p_err) {
__android_log_vprint(p_err ? ANDROID_LOG_ERROR : ANDROID_LOG_INFO, "godot", p_format, p_list);
__android_log_vprint(p_err ? ANDROID_LOG_ERROR : ANDROID_LOG_INFO, "redot", p_format, p_list);
}

virtual ~AndroidLogger() {}
Expand Down

0 comments on commit 9c21b01

Please sign in to comment.