Mercurial Hosting > luan
comparison src/goodjava/logging/Logger.java @ 1448:6fc083e1d08c
start logger
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 23 Feb 2020 18:14:32 -0700 |
parents | 27efb1fcbcb5 |
children | 219f2b937f2b |
comparison
equal
deleted
inserted
replaced
1447:851b9a48cc44 | 1448:6fc083e1d08c |
---|---|
7 public void error(String msg,Throwable t); | 7 public void error(String msg,Throwable t); |
8 public void warn(String msg); | 8 public void warn(String msg); |
9 public void warn(String msg,Throwable t); | 9 public void warn(String msg,Throwable t); |
10 public void info(String msg); | 10 public void info(String msg); |
11 public void info(String msg,Throwable t); | 11 public void info(String msg,Throwable t); |
12 public boolean isInfoEnabled(); | |
12 public void debug(String msg); | 13 public void debug(String msg); |
13 public void debug(String msg,Throwable t); | 14 public void debug(String msg,Throwable t); |
15 public boolean isDebugEnabled(); | |
14 } | 16 } |