diff --git a/src/config/debug.js b/src/config/debug.js index 263b9029ffa..8555d2a3abf 100644 --- a/src/config/debug.js +++ b/src/config/debug.js @@ -3,7 +3,7 @@ * could be useful during development. */ -export const reactNativeDisableYellowBox = false; -export const reactNativeEnableLogbox = true; -export const showNetworkRequests = true; -export const showNetworkResponses = true; +export const reactNativeDisableYellowBox = true; +export const reactNativeEnableLogbox = false; +export const showNetworkRequests = false; +export const showNetworkResponses = false; diff --git a/src/debugging/network.js b/src/debugging/network.js index 4c6398c199d..283b7328920 100644 --- a/src/debugging/network.js +++ b/src/debugging/network.js @@ -86,7 +86,7 @@ export default function monitorNetwork( } ${url}` ); emptyLine(); - if (timeout) { + if (timeout && status > 400) { console.log(` ⚠️ ⚠️ TIMEOUT! ⚠️ ⚠️ `); }