diff --git a/ios/Temp/ViewControllerLifecycleNotifier.swift b/ios/Temp/ViewControllerLifecycleNotifier.swift index 1f05e2ea..eaa06efe 100644 --- a/ios/Temp/ViewControllerLifecycleNotifier.swift +++ b/ios/Temp/ViewControllerLifecycleNotifier.swift @@ -187,11 +187,15 @@ open class ViewControllerLifecycleNotifier: UIViewController { // --------------------- #if DEBUG - public static var _debugShouldLog = true; + public static var _debugShouldLog = false; private var _debugDidAutoLogViewControllerMetrics = false; func debugLogViewControllerMetrics(invoker: String = #function){ + guard Self._debugShouldLog else { + return; + }; + var debugMessage = "ViewControllerLifecycleNotifier.logViewControllerMetrics" + "\n - invoker: \(invoker)"