From c316c0646c13eaf33256b6dea8aea3bbb0220101 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Tue, 27 Nov 2018 10:50:05 +0000 Subject: [PATCH] More useful to have human-readable output for now --- packages/core/src/ground.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/ground.js b/packages/core/src/ground.js index aaff4d2..b44959a 100644 --- a/packages/core/src/ground.js +++ b/packages/core/src/ground.js @@ -106,7 +106,7 @@ function bootModule(mod) { } else { process.on('SIGQUIT', () => { console.log('---------------------------------------------------------------------------'); - console.log(g._dotGraph()); + console.log(g._debugString()); }); g.start(); }