kLog function

void kLog(
  1. dynamic msg
)

Implementation

void kLog(dynamic msg){
  if(kDebugMode){
    Logger().d(msg);
  }
}