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