diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2025-03-14 00:43:48 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2025-03-14 00:43:48 +0200 |
commit | 9a97feb071cca4041a5d753164eab09f936e49d2 (patch) | |
tree | fd093d3351b96861d0a98f98561838612360e65e /api/routes/getNodeInfo | |
parent | 42b51a8fefb308a47840e3dae30c92eb6a39c95a (diff) | |
download | arching-kaos-tools-9a97feb071cca4041a5d753164eab09f936e49d2.tar.gz arching-kaos-tools-9a97feb071cca4041a5d753164eab09f936e49d2.tar.bz2 arching-kaos-tools-9a97feb071cca4041a5d753164eab09f936e49d2.zip |
Now zlatest block is seeked from filesystem
Diffstat (limited to 'api/routes/getNodeInfo')
-rw-r--r-- | api/routes/getNodeInfo/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/routes/getNodeInfo/index.js b/api/routes/getNodeInfo/index.js index d99382a..ed5d500 100644 --- a/api/routes/getNodeInfo/index.js +++ b/api/routes/getNodeInfo/index.js @@ -6,6 +6,7 @@ module.exports = (req, res) => { const command = spawn("ak-config", ["--get-published"]); var buffer = ""; command.stdout.on("data", data => { + console.log(`stdout: ${data}`); buffer = buffer + data; }); |