Logs an exception (including a stack trace)
try { // … } catch (Exception ex) { logException(ex, "Operation XY failed."); }
try { // … } catch (Exception ex) { logException!(LogLevel.trace)(ex); }
See Implementation
Logs an exception (including a stack trace)