Files
Fluxup_PAP/node_modules/react-native-screens/lib/module/private/logging.js
2026-03-10 16:18:05 +00:00

10 lines
282 B
JavaScript

let isDetailedLoggingEnabled = false;
export function bottomTabsDebugLog(...args) {
if (isDetailedLoggingEnabled) {
console.log(...args);
}
}
export function internalEnableDetailedBottomTabsLogging() {
isDetailedLoggingEnabled = true;
}
//# sourceMappingURL=logging.js.map