* BnacLog.java: changed logger class from org.apache.log4j.Logger to
[bnac.git] / src / cl.uchile.dcc.bnac / BnacLog.java
blob59d65dbc1dcbc507e3a5eaf070217b95a5370225
1 /*
2 * bnac : virtual museum environment creation/manipulation project
3 * Copyright (C) 2010 Felipe CaƱas Sabat
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 package cl.uchile.dcc.bnac;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
24 public class BnacLog
26 static protected Logger l;
28 static {
29 l = LoggerFactory.getLogger("cl.uchile.dcc.bnac");
32 static public void trace (String s) { l.trace(s); }
33 static public void trace (String s, Object... args)
35 l.trace(String.format(s, args));
37 static public void debug (String s) { l.debug(s); }
38 static public void debug (String s, Object... args)
40 l.debug(String.format(s, args));
42 static public void info (String s) { l.info(s); }
43 static public void info (String s, Object... args)
45 l.info(String.format(s, args));
47 static public void warn (String s) { l.warn(s); }
48 static public void warn (String s, Object... args)
50 l.warn(String.format(s, args));
52 static public void error (String s) { l.error(s); }
53 static public void error (String s, Object... args)
55 l.error(String.format(s, args));
57 static public void fatal (String s) { fatal("FATAL %s", s); }
58 static public void fatal (String s, Object... args)
60 l.error(String.format(s, args));
63 protected BnacLog () { }