Add DEBUG RingCentral request logging

This commit is contained in:
Matt Low 2021-03-14 12:26:44 -06:00
parent 4cbfd1a4f8
commit 0fb6c9bcfb

View File

@ -4,6 +4,8 @@ import { Sonar, gql } from "./sonar";
import { SDK } from "@ringcentral/sdk";
import { ticketize } from "./ticketize";
export const DEBUG = !!process.env.DEBUG;
function checkEnv() {
[
"SONAR_URL",
@ -76,6 +78,13 @@ async function initRingCentralSDK() {
password: process.env.RC_LOGIN_PASSWORD,
});
if (DEBUG) {
const client = sdk.client();
client.on(client.events.beforeRequest, (req) => {
console.log(req.url);
});
}
const platform = sdk.platform();
platform.on(platform.events.refreshError, async (err) => {
console.error("Refresh token error:", err);