com.polarion.core.util.logging.Logger


METHODS
Modifiers and TypeNameDescription
public, static, Logger getLogger(String) A method to obtain the logger instance to perform logging.

Example: Logger.getLogger("SomeClient").

public, static, Logger getLogger(Class) A method to obtain the logger instance to perform logging.

Example: Logger.getLogger(SomeClass.class).

public, static, Logger getLogger(Object) A method to obtain the logger instance to perform logging.

The recommended pattern is always calling Logger.getLogger(this).


Back to Index