cLogInfo function

void cLogInfo(
  1. dynamic message, {
  2. String? error,
  3. bool showMethod = false,
})

Implementation

void cLogInfo(dynamic message, {String? error, bool showMethod = false}) {
  final Function func = (showMethod ? methodLogger : logger).i;
  _checkLongStr(message, func, error: error);
}