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