Add more profiler events

This commit is contained in:
Wojtek Figat
2025-07-28 15:15:09 +02:00
parent 354eaac56c
commit a7ffd9e57f
3 changed files with 6 additions and 2 deletions

View File

@@ -206,12 +206,12 @@ bool ScriptingService::Init()
// Load assemblies
if (Scripting::Load())
{
LOG(Fatal, "Scripting Engine initialization failed.");
LOG(Fatal, "Scripting initialization failed.");
return true;
}
stopwatch.Stop();
LOG(Info, "Scripting Engine initializated! (time: {0}ms)", stopwatch.GetMilliseconds());
LOG(Info, "Scripting initializated! (time: {0}ms)", stopwatch.GetMilliseconds());
return false;
}