From 83784bec8f2ddc8ee6afe252daec03e4ad83371f Mon Sep 17 00:00:00 2001 From: Matt Low Date: Sat, 13 Mar 2021 14:51:32 -0700 Subject: [PATCH] Improve refresh error logging --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index a2c3c90..f9874d4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -70,7 +70,7 @@ async function initRingCentralSDK() { }); const platform = sdk.platform(); platform.on(platform.events.refreshError, (err) => { - console.error(err); + console.error("Refresh error", err); }); await sdk.login({ username: process.env.RC_LOGIN_USERNAME,