ssap_app/node_modules/react-native-screens/lib/module/private/logging.js

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