Skip to content

Instantly share code, notes, and snippets.

@yusuke
Created October 22, 2017 13:28
Show Gist options
  • Save yusuke/09854ced994e03b342f916107a348065 to your computer and use it in GitHub Desktop.
Save yusuke/09854ced994e03b342f916107a348065 to your computer and use it in GitHub Desktop.
package samuraism.core.logging;
import org.slf4j.Logger;
public final class LoggerFactory {
private LoggerFactory() {
}
public static Logger getLogger() {
return org.slf4j.LoggerFactory.getLogger(new Throwable().getStackTrace()[1].getClassName());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment