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