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