Add Deprecated tag to generic Log utility class.

Encourage use of proper slf4j logging instead.
This commit is contained in:
Kris De Volder
2018-02-02 09:30:27 -08:00
parent b7a2e86131
commit ffdd395538

View File

@@ -15,9 +15,11 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class is here to make porting old STS code easier. Instead of using this,
* consider using {@link org.slf4j.Logger} directly
* This class is here to make porting old STS code easier. Deprecated: Instead of using this,
* consider using {@link org.slf4j.Logger} directly. This allows for more fine-grained
* tuning of logging levels per class.
*/
@Deprecated
public class Log {
final static Logger logger = LoggerFactory.getLogger(Log.class);