Skip to content

Instantly share code, notes, and snippets.

@mehmetcemyucel
Last active April 4, 2021 09:31
Show Gist options
  • Save mehmetcemyucel/5ad13e9fe9f5a00b235c4b623bf44ed1 to your computer and use it in GitHub Desktop.
Save mehmetcemyucel/5ad13e9fe9f5a00b235c4b623bf44ed1 to your computer and use it in GitHub Desktop.
sb-slf4j-log4j2
@Controller
public class SpringBean {
private static Logger log = LoggerFactory.getLogger(SpringBean.class);
@PostConstruct
public void log() {
log.debug("debug");
log.info("info");
log.error("error");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment