1
0
mirror of https://github.com/deavmi/dlog.git synced 2024-07-27 10:10:16 +02:00
- Implemented `setLevel(Level)` and `getLevel()`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-02 11:09:45 +02:00
parent 70dc9c0449
commit 20dc3c0058

View File

@ -33,6 +33,16 @@ public class Context
{
return lineInfo;
}
public final Level getLevel()
{
return level;
}
public final void setLevel(Level level)
{
this.level = level;
}
}
/**