init static method

void init(
  1. int l
)

Implementation

static void init(int l) {
  if (l > VERBOSE) {
    l = VERBOSE;
  } else if (l < NONE) {
    l = NONE;
  }
  __logLevel = l;
}