info static method

dynamic info(
  1. dynamic message, {
  2. bool alwaysPrint = false,
})

Log an info message to the console. It will only print if your app's environment is in debug mode. You can override this by setting alwaysPrint = true.

Implementation

static info(dynamic message, {bool alwaysPrint = false}) {
  _loggerPrint(message ?? "", 'info', alwaysPrint);
}