6 lines
120 B
Go
6 lines
120 B
Go
|
package log
|
||
|
|
||
|
func Deprecated(logger Logger, f string, args ...interface{}) {
|
||
|
logger.Warnf("Deprecated: "+f, args...)
|
||
|
}
|