logEnableStacktrace function Debug

dynamic logEnableStacktrace(
  1. bool enable
)

Prepend source location to all messages

If set to true it shows the location from where the log message is called from.

Implementation

logEnableStacktrace(bool enable) {
  _logStackTrace = enable;
}