1 package org.apache.maven.plugin.logging; 2 3 18 19 22 public interface Log 23 { 24 boolean isDebugEnabled(); 25 26 void debug( CharSequence content ); 27 28 void debug( CharSequence content, Throwable error ); 29 30 void debug( Throwable error ); 31 32 boolean isInfoEnabled(); 33 34 void info( CharSequence content ); 35 36 void info( CharSequence content, Throwable error ); 37 38 void info( Throwable error ); 39 40 boolean isWarnEnabled(); 41 42 void warn( CharSequence content ); 43 44 void warn( CharSequence content, Throwable error ); 45 46 void warn( Throwable error ); 47 48 boolean isErrorEnabled(); 49 50 void error( CharSequence content ); 51 52 void error( CharSequence content, Throwable error ); 53 54 void error( Throwable error ); 55 } | Popular Tags |