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:
mciezadlo 2015-04-22 13:53:36 +02:00
parent 68b6f8b95f
commit f4d6777117
1 changed files with 5 additions and 0 deletions

View File

@ -350,5 +350,10 @@ public class Category {
public boolean getAdditivity() {
return false;
}
public void assertLog(boolean assertion, String msg) {
if(!assertion)
error(msg);
}
}