Package com.igormaznitsa.jcp.logger
Interface PreprocessorLogger
-
- All Known Implementing Classes:
PreprocessorMojo
,PreprocessTask
,SystemOutLogger
public interface PreprocessorLogger
The 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 void
debug(java.lang.String message)
Log a debug messagevoid
error(java.lang.String message)
Log an error messagevoid
info(java.lang.String message)
Log an information messagevoid
warning(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
-
-