Format the function name out instead

This commit is contained in:
Kawe Mazidjatari 2023-03-20 00:21:41 +01:00
parent 1bd1ef6330
commit aa332bad8a

View File

@ -34,7 +34,7 @@ int LauncherMain(HINSTANCE hInstance)
SpdLog_PostInit();
int results = v_LauncherMain(hInstance);
spdlog::info("LauncherMain returned: {:s}\n", ExitCodeToString(results));
spdlog::info("{:s} returned: {:s}\n", __FUNCTION__, ExitCodeToString(results));
return results;
}