From f2ed95757924792f0faa1ddc02a326994e452d4f Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 4 Feb 2024 09:04:12 +0000 Subject: [PATCH] Expand server version debug logging --- project/src/controllers/GameController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/controllers/GameController.ts b/project/src/controllers/GameController.ts index d81ac96b..282a93f1 100644 --- a/project/src/controllers/GameController.ts +++ b/project/src/controllers/GameController.ts @@ -907,7 +907,7 @@ export class GameController protected logProfileDetails(fullProfile: IAkiProfile): void { this.logger.debug(`Profile made with: ${fullProfile.aki.version}`); - this.logger.debug(`Server version: ${this.coreConfig.akiVersion}`); + this.logger.debug(`Server version: ${this.coreConfig.akiVersion} ${this.coreConfig.commit}`); this.logger.debug(`Debug enabled: ${globalThis.G_DEBUG_CONFIGURATION}`); this.logger.debug(`Mods enabled: ${globalThis.G_MODS_ENABLED}`); }