wtfLog function

void wtfLog(
  1. dynamic msg
)

Implementation

void wtfLog(dynamic msg) {
  if(kDebugMode) {
    Logger().f(msg);
  }
}