From 402afbf70338c18f2b0d55a980502921797a3399 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 22 Nov 2020 13:27:39 +0200 Subject: [PATCH] Add CPU arch to start-up message --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 3ce1a16..a62d2ed 100644 --- a/src/index.js +++ b/src/index.js @@ -7,7 +7,7 @@ if (nodeMajorVersion < 12) { // Print out bot and Node.js version const { getPrettyVersion } = require("./botVersion"); -console.log(`Starting Modmail ${getPrettyVersion()} on Node.js ${process.versions.node}`); +console.log(`Starting Modmail ${getPrettyVersion()} on Node.js ${process.versions.node} (${process.arch})`); // Verify node modules have been installed const fs = require("fs");