Package de.saumya.mojo.ruby
Interface Logger
-
- All Known Implementing Classes:
NoopLogger,SystemLogger
public interface Logger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddebug(java.lang.CharSequence content)Send a message to the user in the debug level.voiderror(java.lang.CharSequence string)Send a message to the user in the error level.voidinfo(java.lang.CharSequence content)Send a message to the user in the info level.voidwarn(java.lang.CharSequence string)Send a message to the user in the warn level.
-
-
-
Method Detail
-
debug
void debug(java.lang.CharSequence content)
Send a message to the user in the debug level.- Parameters:
content-
-
info
void info(java.lang.CharSequence content)
Send a message to the user in the info level.- Parameters:
content-
-
warn
void warn(java.lang.CharSequence string)
Send a message to the user in the warn level.- Parameters:
content-
-
error
void error(java.lang.CharSequence string)
Send a message to the user in the error level.- Parameters:
content-
-
-