From ef2cb9cf35b71582d8ee9cdc8c6deb73ecdb2af9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 16 Jan 2014 15:30:31 +0100 Subject: [PATCH] Log "onDestroy" as info instead of error. --- android/src/com/henrikrydgard/libnative/NativeActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/src/com/henrikrydgard/libnative/NativeActivity.java b/android/src/com/henrikrydgard/libnative/NativeActivity.java index 092a663134..7f814c43c3 100644 --- a/android/src/com/henrikrydgard/libnative/NativeActivity.java +++ b/android/src/com/henrikrydgard/libnative/NativeActivity.java @@ -349,7 +349,7 @@ public class NativeActivity extends Activity { @Override protected void onDestroy() { super.onDestroy(); - Log.e(TAG, "onDestroy"); + Log.i(TAG, "onDestroy"); mGLSurfaceView.onDestroy(); nativeRenderer.onDestroyed(); NativeApp.audioShutdown();