Package com.igormaznitsa.jcp.logger
Interface PreprocessorLogger
-
- All Known Implementing Classes:
PreprocessorMojo,PreprocessTask,PreprocessTestsMojo,SystemOutLogger
public interface PreprocessorLoggerThe interface describes a logger to be used by a preprocessor during its work
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(java.lang.String message)Log a debug messagevoiderror(java.lang.String message)Log an error messagevoidinfo(java.lang.String message)Log an information messagevoidwarning(java.lang.String message)Log a warning message
-
-
-
Method Detail
-
error
void error(java.lang.String message)
Log an error message- Parameters:
message- the text to be output into the error log
-
info
void info(java.lang.String message)
Log an information message- Parameters:
message- the text to be output into the information log
-
debug
void debug(java.lang.String message)
Log a debug message- Parameters:
message- the text to be output into the information log- Since:
- 6.0.1
-
warning
void warning(java.lang.String message)
Log a warning message- Parameters:
message- the text to be output into the warning log
-
-