Add Deprecated tag to generic Log utility class.
Encourage use of proper slf4j logging instead.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user