printDebug function
Print a message to the console. Log level: Debug
Implementation
void printDebug(dynamic message, {bool alwaysPrint = false}) {
  NyLogger.debug(message, alwaysPrint: alwaysPrint);
}Print a message to the console. Log level: Debug
void printDebug(dynamic message, {bool alwaysPrint = false}) {
  NyLogger.debug(message, alwaysPrint: alwaysPrint);
}