Unrestrict console depth nesting

This commit is contained in:
Cohee 2024-03-28 00:16:35 +02:00
parent 8b7b32a141
commit 1c01aafd51
1 changed files with 1 additions and 0 deletions

View File

@ -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');