adding multiple hooks supports for events and loop

This commit is contained in:
2024-12-17 02:33:04 +01:00
parent 30f4602b1c
commit 62bd63c364
15 changed files with 77 additions and 59 deletions

View File

@@ -93,7 +93,7 @@ namespace mlx
try
{
std::stringstream ss;
ss << Format("Verification failed : %", message, args...);
ss << Format("Verification failed: %", message, args...);
Logs::Report(LogType::FatalError, line, file, function, ss.str());
}
catch(const std::exception& e)
@@ -112,7 +112,7 @@ namespace mlx
try
{
std::stringstream ss;
ss << Format("Assertion failed : %", message, args...);
ss << Format("Assertion failed: %", message, args...);
Logs::Report(LogType::FatalError, line, file, function, ss.str());
}
catch(const std::exception& e)