mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-06-29 16:20:46 +00:00
13 lines
247 B
Go
13 lines
247 B
Go
package obilog
|
|
|
|
import (
|
|
"git.metabarcoding.org/obitools/obitools4/obitools4/pkg/obidefault"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func Warnf(format string, args ...interface{}) {
|
|
if !obidefault.SilentWarning() {
|
|
logrus.Warnf(format, args...)
|
|
}
|
|
}
|