diff --git a/android/app/src/main/java/io/highfidelity/hifiinterface/InterfaceActivity.java b/android/app/src/main/java/io/highfidelity/hifiinterface/InterfaceActivity.java index 20c216d5a9..84fd2678d8 100644 --- a/android/app/src/main/java/io/highfidelity/hifiinterface/InterfaceActivity.java +++ b/android/app/src/main/java/io/highfidelity/hifiinterface/InterfaceActivity.java @@ -126,7 +126,6 @@ public class InterfaceActivity extends QtActivity { if (super.isLoading) { nativeEnterBackgroundCallEnqueued = true; } else { - Log.d("[ENTERBACKGROUND]","onPause calling nativeEnterBackground"); nativeEnterBackground(); } //gvrApi.pauseTracking(); @@ -265,7 +264,6 @@ public class InterfaceActivity extends QtActivity { public void onAppLoadedComplete() { super.isLoading = false; if (nativeEnterBackgroundCallEnqueued) { - Log.d("[ENTERBACKGROUND]","onAppLoadedComplete calling nativeEnterBackground"); nativeEnterBackground(); } } diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 6111406291..cbe713127d 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -8248,12 +8248,10 @@ void Application::saveNextPhysicsStats(QString filename) { #if defined(Q_OS_ANDROID) void Application::enterBackground() { - qDebug() << "[ENTERBACKGROUND] Application::enterBackground()"; QMetaObject::invokeMethod(DependencyManager::get().data(), "stop", Qt::BlockingQueuedConnection); if (getActiveDisplayPlugin()->isActive()) { getActiveDisplayPlugin()->deactivate(); - qDebug() << "[ENTERBACKGROUND] Application::enterBackground() getActiveDisplayPlugin()->deactivated"; } }