From 3f2466b09c113928611d0f0a64aed9db75f84f9b Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Sat, 11 Jul 2020 20:21:40 -0400 Subject: [PATCH] stricter log --- services/gunDB/contact-api/utils/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/services/gunDB/contact-api/utils/index.js b/services/gunDB/contact-api/utils/index.js index 28dc0ebb..4c1be37c 100644 --- a/services/gunDB/contact-api/utils/index.js +++ b/services/gunDB/contact-api/utils/index.js @@ -105,6 +105,7 @@ const tryAndWait = async (promGen, shouldRetry = () => false) => { } } catch (e) { logger.error(e) + logger.info(JSON.stringify(e)) if (e.message === 'NOT_AUTH') { throw e }