public void info(String format, params Object[] args)
 {
     if (EzyLoggerFactory.getLoggerLevel() <= INFO)
     {
         info0(format, args);
     }
 }
 public void debug(String format, params Object[] args)
 {
     if (EzyLoggerFactory.getLoggerLevel() <= DEBUG)
     {
         debug0(format, args);
     }
 }
 public void debug(String message, Exception e)
 {
     if (EzyLoggerFactory.getLoggerLevel() <= DEBUG)
     {
         debug0(message, e);
     }
 }
 public void trace(String message, Exception e)
 {
     if (EzyLoggerFactory.getLoggerLevel() <= TRACE)
     {
         trace0(message, e);
     }
 }