mirror of https://github.com/qos-ch/slf4j
Update Category.java
Added missing method from log4j Category class, which is quite useful and can be easily implemented. (Found it when using library which called this method so I received NoSuchMethodError)
This commit is contained in:
parent
68b6f8b95f
commit
f4d6777117
|
|
@ -350,5 +350,10 @@ public class Category {
|
|||
public boolean getAdditivity() {
|
||||
return false;
|
||||
}
|
||||
|
||||
public void assertLog(boolean assertion, String msg) {
|
||||
if(!assertion)
|
||||
error(msg);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue