kLogErr function

void kLogErr(
  1. dynamic m
)

Implementation

void kLogErr(dynamic m){
  if(kDebugMode){
    Logger().e(m);
  }
}