logEnableStacktrace function Debug

void 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

void logEnableStacktrace(bool enable) {
  _logStackTrace = enable;
}