logPrint function

dynamic logPrint(
  1. String s
)

Implementation

logPrint(String s){
  if(logEnable){
    debugPrint(s);
  }
}