Log "onDestroy" as info instead of error.

This commit is contained in:
Henrik Rydgård
2014-01-16 15:30:55 +01:00
parent ddbb357bee
commit ef2cb9cf35
@@ -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();