diff --git a/cmds/eval.js b/cmds/eval.js index 2f2b1a5c..f7d7c230 100644 --- a/cmds/eval.js +++ b/cmds/eval.js @@ -9,7 +9,7 @@ import { createRequire } from 'node:module'; const require = createRequire(import.meta.url); const {limit: {verification: verificationLimit, rcgcdw: rcgcdwLimit}} = require('../util/default.json'); -inspect.defaultOptions = {compact: false, breakLength: Infinity}; +inspect.defaultOptions = {compact: false, breakLength: Infinity, depth: 3}; /** * Processes the "eval" command. diff --git a/util/globals.js b/util/globals.js index d98148cd..a4b70a68 100644 --- a/util/globals.js +++ b/util/globals.js @@ -1,5 +1,5 @@ import { inspect } from 'node:util'; -inspect.defaultOptions = {compact: false, breakLength: Infinity}; +inspect.defaultOptions = {compact: false, breakLength: Infinity, depth: 3}; /** * If debug logging is enabled.