Skip to content

Commit

Permalink
Unset debug flags
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanhaevre committed Mar 19, 2024
1 parent b607e4c commit 4ceb9a7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ios/THEOplayerRCTDebug.swift
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit 4ceb9a7

Please sign in to comment.