Add CPU arch to start-up message

cshd
Dragory 2020-11-22 13:27:39 +02:00
parent b6ac6ec791
commit 402afbf703
No known key found for this signature in database
GPG Key ID: 5F387BA66DF8AAC1
1 changed files with 1 additions and 1 deletions

View File

@ -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");