android/LogListener: pass formatted message to OnLog()

This commit is contained in:
Max Kellermann
2021-05-27 16:19:46 +02:00
parent 4db882f666
commit 4d32454697
3 changed files with 10 additions and 14 deletions

View File

@@ -28,8 +28,7 @@ class LogListener : public Java::GlobalObject {
public:
LogListener(JNIEnv *env, jobject obj) noexcept;
void OnLog(JNIEnv *env, int priority,
const char *fmt, ...) const noexcept;
void OnLog(JNIEnv *env, int priority, const char *msg) const noexcept;
};
#endif