From 0ad71055224808bddb93e1a3da82ab600fbad221 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 17 Oct 2025 18:22:45 +0100 Subject: [PATCH] infra: add NodeJS runtime to initial server log --- src/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index e8255e4..ceffa6e 100644 --- a/src/index.js +++ b/src/index.js @@ -14,5 +14,6 @@ app.use("/entries", entries) app.use("/tags", tags) app.listen(port, () => { - console.info(`INFO eolas-api server running at http://localhost:${port}`) + console.info(`TB-INFO eolas-api running on NodeJS ${process.version}`) + console.info(`TB-INFO eolas-api server running at http://localhost:${port}`) })