diff --git a/packages/node/src/lib/log.ts b/packages/node/src/lib/log.ts index 19a1961a96..bb7d9a2a55 100644 --- a/packages/node/src/lib/log.ts +++ b/packages/node/src/lib/log.ts @@ -27,7 +27,10 @@ function doSend(readmeApiKey: string, options: Options) { // Make the log call metricsAPICall(readmeApiKey, json).catch(e => { // Silently discard errors and timeouts. - if (options.development) throw e; + if (options.development) { + // maybe a console.log(e) ? + // throw e; + } }); } // Make sure we flush the queue if the process is exited