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