Package org.alfresco.solr.logging
Class Log
java.lang.Object
org.alfresco.solr.logging.Log
Logging utility.
It is a simple wrapper around a logger implementation, which allows a more concise code.
- Since:
- 1.3
- Author:
- Andrea Gazzarini
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidLogs a given message with DEBUG level.voidLogs a given message with ERROR level.voidLogs a given message with INFO level.voidLogs a given message with WARNING level.
-
Constructor Details
-
Log
-
-
Method Details
-
debug
Logs a given message with DEBUG level.- Parameters:
message- the message template (with placeholders)params- the optional array of values.
-
warning
Logs a given message with WARNING level.- Parameters:
message- the message template (with placeholders)params- the optional array of values.
-
error
Logs a given message with ERROR level.- Parameters:
message- the message template (with placeholders)params- the optional array of values.
-
info
Logs a given message with INFO level.- Parameters:
message- the message template (with placeholders)params- the optional array of values.
-