Logs an exception, including a debug stack trace.
void test() nothrow { try { throw new Exception("Something failed!"); } catch (Exception e) { logException(e, "Failed to carry out some operation"); } }
See Implementation
Logs an exception, including a debug stack trace.