From 8e1ba0cb09e2e89030f3a92bf8bf66996448087a Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Tue, 8 Feb 2022 19:22:06 -0500 Subject: [PATCH] fix(plugins/core): display getters in util.inspect --- source/plugins/core/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/plugins/core/index.mjs b/source/plugins/core/index.mjs index e22d15be..9dbb045c 100644 --- a/source/plugins/core/index.mjs +++ b/source/plugins/core/index.mjs @@ -69,7 +69,7 @@ export default async function({login, q}, {conf, data, rest, graphql, plugins, q } finally { const result = {name, result:data.plugins[name]} - console.debug(imports.util.inspect(result, {depth:Infinity, maxStringLength:256})) + console.debug(imports.util.inspect(result, {depth:Infinity, maxStringLength:256, getters:true})) return result } })())