Skip to content

Commit

Permalink
Improve exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
Hary309 committed Apr 2, 2021
1 parent d27a4f9 commit 31e9989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dllmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ __declspec(dllexport) SCSAPI_RESULT
}
catch (const std::exception& ex)
{
log(SCS_LOG_TYPE_error, fmt::format("Exception: {}", ex.what()).c_str());
log(SCS_LOG_TYPE_error, fmt::format("[hry-core] {}", ex.what()).c_str());
}

return SCS_RESULT_generic_error;
Expand Down

0 comments on commit 31e9989

Please sign in to comment.