diff --git a/src/utils.ts b/src/utils.ts index 17f5c2ec..98a4472f 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -65,16 +65,6 @@ export const pointerLock = { } } -export const logAction = (category: string, action: string, value?: string, label?: string) => { - if (!options.externalLoggingService) return - window.loggingServiceChannel?.({ - category, - action, - value, - label - }) -} - export const isInRealGameSession = () => { return isGameActive(true) && (!packetsReplayState.isOpen || packetsReplayState.isMinimized) && !gameAdditionalState.viewerConnection }