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