From 8e7334a50535ef33189c3e71fcab0d9e625c6534 Mon Sep 17 00:00:00 2001
From: Roel Spilker
There are four @Log
choices available:
@lombok.commons.Log
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(TargetType.class);
@lombok.jul.Log
private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(TargetType.class.getName());
@lombok.log4j.Log
private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(TargetType.class);
@lombok.slf4j.Log
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(TargetType.class);
@lombok.extern.apachecommons.Log
private static final org.apache.commons.logging.Log log = org.apache.commons.logging.LogFactory.getLog(LogExample.class);
@lombok.extern.jul.Log
private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LogExample.class.getName());
@lombok.extern.log4j.Log
private static final org.apache.log4j.Logger log = org.apache.log4j.Logger.getLogger(LogExample.class);
@lombok.extern.slf4j.Log
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LogExample.class);
-- cgit