debug method
Implementation
void debug(String title, String message, [StackTrace? stackTrace]) {
if (LogbotCommonEnvironment.debugLogs) {
_logger.d(wrapText(title),
error: wrapText(message), stackTrace: stackTrace);
}
}
void debug(String title, String message, [StackTrace? stackTrace]) {
if (LogbotCommonEnvironment.debugLogs) {
_logger.d(wrapText(title),
error: wrapText(message), stackTrace: stackTrace);
}
}