* anti-abuse upgrade: filters now stored in the database (experimental)
[mir.git] / source / mir / log / log4j / LoggerImpl.java
index cd80fd8..c6af2db 100755 (executable)
@@ -67,6 +67,11 @@ public class LoggerImpl implements mir.log.Logger {
   }
 
   /** {@inheritDoc} */
+  public void error(Object o, String s, Throwable anException) {
+    this.getLogger(o).error(s, anException);
+  }
+
+  /** {@inheritDoc} */
   public void fatal(Object o, String s) {
     this.getLogger(o).fatal(s);
   }