Package com.day.cq.replication
Interface ReplicationLog
- All Known Implementing Classes:
ListenerLogDelegator
public interface ReplicationLog
ReplicationLog...-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoidLog a message with level debug.voidLog a message with level debug.voidLog a message with level error.voidLog a message with level error.getLevel()Returns the log level of this loggetLines()Returns the linesvoidLog a message with level info.voidLog a message with level info.voidsetLevel(ReplicationLog.Level level) Set the log levelvoidLog a message with level warn.voidLog a message with level warn.
-
Method Details
-
getLevel
ReplicationLog.Level getLevel()Returns the log level of this log- Returns:
- the log level
-
setLevel
Set the log level- Parameters:
level- the log level
-
getLines
Collection<String> getLines()Returns the lines- Returns:
- the lines.
-
debug
Log a message with level debug.- Parameters:
message- the log message
-
debug
Log a message with level debug.- Parameters:
fmt- the message formatargs- the message arguments- See Also:
-
info
Log a message with level info.- Parameters:
message- the log message
-
info
Log a message with level info.- Parameters:
fmt- the message formatargs- the message arguments- See Also:
-
warn
Log a message with level warn.- Parameters:
message- the log message
-
warn
Log a message with level warn.- Parameters:
fmt- the message formatargs- the message arguments- See Also:
-
error
Log a message with level error.- Parameters:
message- the log message
-
error
Log a message with level error.- Parameters:
fmt- the message formatargs- the message arguments- See Also:
-