UNPKG

react-native-screens

Version:
14 lines (11 loc) 290 B
let isDetailedLoggingEnabled = false; export function bottomTabsDebugLog( ...args: Parameters<(typeof console)['log']> ) { if (isDetailedLoggingEnabled) { console.log(...args); } } export function internalEnableDetailedBottomTabsLogging() { isDetailedLoggingEnabled = true; }