react-native-screens
Version:
Native navigation primitives for your React Native app.
17 lines (16 loc) • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.bottomTabsDebugLog = bottomTabsDebugLog;
exports.internalEnableDetailedBottomTabsLogging = internalEnableDetailedBottomTabsLogging;
let isDetailedLoggingEnabled = false;
function bottomTabsDebugLog(...args) {
if (isDetailedLoggingEnabled) {
console.log(...args);
}
}
function internalEnableDetailedBottomTabsLogging() {
isDetailedLoggingEnabled = true;
}
//# sourceMappingURL=logging.js.map