c static method
log the error to the console only
Implementation
static String c(Object e, {StackTrace? st}) {
final _msg =
'LOG : [${dt.toIso8601String()}] $e ${st != null ? '\n $st' : ''}';
print(_msg);
return _msg;
}
log the error to the console only
static String c(Object e, {StackTrace? st}) {
final _msg =
'LOG : [${dt.toIso8601String()}] $e ${st != null ? '\n $st' : ''}';
print(_msg);
return _msg;
}