debug method
- dynamic msg,
- [dynamic err,
- StackTrace stackTrace]
Implementation
static debug(dynamic msg, [dynamic err, StackTrace stackTrace]) {
if (debugLevel == 'all' || debugLevel == 'debug')
logger.d(msg, err, stackTrace);
}
static debug(dynamic msg, [dynamic err, StackTrace stackTrace]) {
if (debugLevel == 'all' || debugLevel == 'debug')
logger.d(msg, err, stackTrace);
}