From 4ceb9a7b1ee808e2425dce61a56d221dfaebb7aa Mon Sep 17 00:00:00 2001 From: William Van Haevre Date: Tue, 19 Mar 2024 14:16:27 +0100 Subject: [PATCH] Unset debug flags --- ios/THEOplayerRCTDebug.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ios/THEOplayerRCTDebug.swift b/ios/THEOplayerRCTDebug.swift index 12d7d9d94..4339c82ae 100644 --- a/ios/THEOplayerRCTDebug.swift +++ b/ios/THEOplayerRCTDebug.swift @@ -1,16 +1,16 @@ // THEOplayerRCTDebug.swift // General debug flag, if set to false none of the debug prints will appear -let DEBUG = true +let DEBUG = false // Debug flag to monitor incoming Theoplayer events -let DEBUG_THEOPLAYER_EVENTS = DEBUG && true +let DEBUG_THEOPLAYER_EVENTS = DEBUG && false // Debug flag to monitor eventhandler setup and breakdown let DEBUG_EVENTHANDLER = DEBUG && false // Debug flag to monitor the interactions for each view with its underlying theoplayer instance -let DEBUG_THEOPLAYER_INTERACTION = DEBUG && true +let DEBUG_THEOPLAYER_INTERACTION = DEBUG && false // Debug flag to monitor contentProtection integration handling let DEBUG_CONTENT_PROTECTION_API = DEBUG && false @@ -31,7 +31,7 @@ let DEBUG_CAST_API = DEBUG && false let DEBUG_PLAYER_API = DEBUG && false // Debug flag to monitor Now Playing Info updates -let DEBUG_NOWINFO = DEBUG && true +let DEBUG_NOWINFO = DEBUG && false // Debug flag to monitor Remote Commands updates let DEBUG_REMOTECOMMANDS = DEBUG && false @@ -40,7 +40,7 @@ let DEBUG_REMOTECOMMANDS = DEBUG && false let DEBUG_PIPCONTROLS = DEBUG && false // Debug flag to monitor incoming cache events -let DEBUG_CACHE_EVENTS = DEBUG && true +let DEBUG_CACHE_EVENTS = DEBUG && false // Debug flag to monitor cache API usage -let DEBUG_CACHE_API = DEBUG && true +let DEBUG_CACHE_API = DEBUG && false