コード例 #1
0
 public void println(Object x) {
   if (this == errInstance) {
     log.error(String.valueOf(x));
   } else {
     log.info(String.valueOf(x));
   }
 }
コード例 #2
0
 public void println(String x) {
   if (this == errInstance) {
     log.error(x);
   } else {
     log.info(x);
   }
 }
コード例 #3
0
 public void println(char[] x) {
   if (this == errInstance) {
     log.error(x == null ? null : new String(x));
   } else {
     log.info(x == null ? null : new String(x));
   }
 }