From 1c01aafd51b98670d09565e4320c3b1fc8a084db Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 28 Mar 2024 00:16:35 +0200 Subject: [PATCH] Unrestrict console depth nesting --- server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server.js b/server.js index 77ab7073f..d8ad9c7e5 100644 --- a/server.js +++ b/server.js @@ -30,6 +30,7 @@ const fetch = require('node-fetch').default; // Unrestrict console logs display limit util.inspect.defaultOptions.maxArrayLength = null; util.inspect.defaultOptions.maxStringLength = null; +util.inspect.defaultOptions.depth = null; // local library imports const basicAuthMiddleware = require('./src/middleware/basicAuth');