printAlways static method

void printAlways(
  1. String s
)

Implementation

static void printAlways(String s)
{
  if (useDevLog) {
    dev.log(s);
  }
  else {
    debugPrint(s);
  }
}