cLogWarning function

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

Implementation

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