allowIndividualLevels static method

void allowIndividualLevels()

Allows individual loggers to have their own level.

In this case, you could use it to make betrayal shut up, for example.

BetrayalLogConfig.allowIndividualLevels();
BetrayalLogConfig.level = Level.OFF;

This function is implemented as

static void allowIndividualLevels() => hierarchicalLoggingEnabled = true;

so unfortunately, it's changing a global variable from the logging package.

Implementation

static void allowIndividualLevels() => hierarchicalLoggingEnabled = true;