info method

Logo info(
  1. Object? content
)

Implementation

Logo info(Object? content) {
  if (!this._expect([
    LogoLogLevelType.INFO,
    LogoLogLevelType.DEBUG,
    LogoLogLevelType.VERBOSE,
  ])) {
    return this;
  }

  final String quote = getLogQuote(LogoLogLevelType.INFO);
  final String prettified = mergeContent(quote, content, this._getConfig());

  this._logFunction(prettified);
  this._count++;
  return this;
}