BasicLogger

- Added `getLevel()`
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-09 08:47:43 +02:00
parent 5447f6dfbd
commit fbada61e90
1 changed files with 5 additions and 0 deletions

View File

@ -95,6 +95,11 @@ public class BasicLogger : Logger
{
this.level = level;
}
public final Level getLevel()
{
return this.level;
}
}
public class ConsoleLogger : BasicLogger