Interface Log.LoaderLogger
- All Known Implementing Classes:
Log.JavaLoaderLogger
- Enclosing class:
Log
public static interface Log.LoaderLogger
Defines an interface for logging in the EASy loader. We cannot rely on the EASy logger as this is not known.
Further, we do not rely on other logger frameworks in order to avoid conflicts. They can be used by delegation.
- Author:
- Holger Eichelberger
-
Method Summary
Modifier and TypeMethodDescriptionvoidLogs an error.voidLogs an error with exception.voidLogs an information message.voidLogs a warning.voidEmits a warning and adds the message of the givenexception.
-
Method Details
-
error
Logs an error.- Parameters:
error- the error text
-
error
Logs an error with exception.- Parameters:
error- the error textexception- the exception to be added
-
warn
Logs a warning.- Parameters:
warning- the warning text
-
warn
Emits a warning and adds the message of the givenexception.- Parameters:
warning- the warning textexception- the exception to be added
-
info
Logs an information message.- Parameters:
msg- the message to be logged
-