github.com/code-to-go/safepool.lib@v0.0.0-20221205180519-ee25e63c226e/core/log.go (about) 1 package core 2 3 import ( 4 "github.com/sirupsen/logrus" 5 ) 6 7 func Info(format string, args ...any) { 8 logrus.Infof(format, args...) 9 }