diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-04-26 00:13:39 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-04-26 00:50:35 +0200 |
commit | 94fe641b455053634d6ab927cca5661189f3eaa3 (patch) | |
tree | 5b26c213f8d43ac9653606781f29016ca2d4add8 | |
parent | 74cdadf7dc9e2f7d2c8abd85467662a8fb00c93f (diff) | |
download | NorthstarLauncher-94fe641b455053634d6ab927cca5661189f3eaa3.tar.gz NorthstarLauncher-94fe641b455053634d6ab927cca5661189f3eaa3.zip |
Write launcher version to log file (#153)
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 22b9a673..c0674d94 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -205,6 +205,10 @@ bool InitialiseNorthstar() InitialiseLogging(); InstallInitialHooks(); CreateLogFiles(); + + // Write launcher version to log + spdlog::info("NorthstarLauncher version: {}", version); + InitialiseInterfaceCreationHooks(); AddDllLoadCallback("tier0.dll", InitialiseTier0GameUtilFunctions); |