aboutsummaryrefslogtreecommitdiffstats
path: root/al/eax_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'al/eax_utils.cpp')
-rw-r--r--al/eax_utils.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/al/eax_utils.cpp b/al/eax_utils.cpp
new file mode 100644
index 00000000..9a8f04f1
--- /dev/null
+++ b/al/eax_utils.cpp
@@ -0,0 +1,35 @@
+#include "eax_utils.h"
+
+#include <cassert>
+
+#include <exception>
+
+#include "core/logging.h"
+
+
+void eax_log_exception(
+ const char* message) noexcept
+{
+ const auto exception_ptr = std::current_exception();
+
+ assert(exception_ptr);
+
+ if (message)
+ {
+ ERR("%s\n", message);
+ }
+
+ try
+ {
+ std::rethrow_exception(exception_ptr);
+ }
+ catch (const std::exception& ex)
+ {
+ const auto ex_message = ex.what();
+ ERR("%s\n", ex_message);
+ }
+ catch (...)
+ {
+ ERR("%s\n", "Generic exception.");
+ }
+}