Skip to content
Snippets Groups Projects
Commit fec6b585 authored by Martin Vogel's avatar Martin Vogel
Browse files

#414 Add default logger that will later be used as a provider for an external logging module

parent ae04f69d
No related branches found
No related tags found
2 merge requests!2#414 Remaining changes from MR,!1planning#414 Methoden Signaturen (Zwischenstand)
package de.fitconnect.api.logger;
import java.util.logging.Logger;
public final class SdkLogger {
// TODO make custom logging module injectable / load via SPI
public static Logger defaultLogger(final Class clazz) {
return Logger.getLogger(clazz.getName());
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment