001package org.apache.juli.logging;
002
003public interface Log {
004
005    public void debug(Object arg0);
006
007        public void debug(Object arg0, Throwable arg1);
008
009        public void error(Object arg0);
010
011        public void error(Object arg0, Throwable arg1);
012
013        public void fatal(Object arg0);
014
015        public void fatal(Object arg0, Throwable arg1);
016
017        public void info(Object arg0);
018
019        public void info(Object arg0, Throwable arg1);
020
021        public boolean isDebugEnabled();;
022
023        public boolean isErrorEnabled();
024
025        public boolean isFatalEnabled();
026
027        public boolean isInfoEnabled();
028
029        public boolean isTraceEnabled();
030
031        public boolean isWarnEnabled();
032
033        public void trace(Object arg0);
034
035        public void trace(Object arg0, Throwable arg1);
036
037        public void warn(Object arg0);
038
039        public void warn(Object arg0, Throwable arg1);
040
041}