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