0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-02-24 12:56:36 +01:00

13 lines
242 B
Go
Raw Normal View History

package logger
import "os"
type Logger interface {
Printf(format string, args ...interface{})
Debugf(format string, args ...interface{})
}
func DebugEnabled() bool {
return os.Getenv("SWAGGER_DEBUG") != "" || os.Getenv("DEBUG") != ""
}