d static method

void d(
  1. String msg
)

Debug message log

Implementation

static void d(String msg) {
  if (enabled) {
    print('<VPON> [DEBUG] $msg');
  }
}