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

17 lines
488 B
JavaScript

"use strict";
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