aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/go-xorm/core/ilogger.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2019-10-23 23:03:17 -0700
committerGitHub <noreply@github.com>2019-10-23 23:03:17 -0700
commit613139e7bef81d3573e7988a47eb6765f3de347a (patch)
tree49de7277898d3ff47a122c072568edb8ed4c9ac9 /vendor/github.com/go-xorm/core/ilogger.go
parentfb100dbf98f02e4c631d142ff0f52ec29ee2f00c (diff)
Enable Go modules (#5835)
* Remove vendor * Enable Go modules * ci: add command to fetch dependencies * ci: update setting * ci: update settings * Require Go 1.11 * Rename module name to gogs.io/gogs
Diffstat (limited to 'vendor/github.com/go-xorm/core/ilogger.go')
-rw-r--r--vendor/github.com/go-xorm/core/ilogger.go31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/github.com/go-xorm/core/ilogger.go b/vendor/github.com/go-xorm/core/ilogger.go
deleted file mode 100644
index c8d78496..00000000
--- a/vendor/github.com/go-xorm/core/ilogger.go
+++ /dev/null
@@ -1,31 +0,0 @@
-package core
-
-type LogLevel int
-
-const (
- // !nashtsai! following level also match syslog.Priority value
- LOG_DEBUG LogLevel = iota
- LOG_INFO
- LOG_WARNING
- LOG_ERR
- LOG_OFF
- LOG_UNKNOWN
-)
-
-// logger interface
-type ILogger interface {
- Debug(v ...interface{})
- Debugf(format string, v ...interface{})
- Error(v ...interface{})
- Errorf(format string, v ...interface{})
- Info(v ...interface{})
- Infof(format string, v ...interface{})
- Warn(v ...interface{})
- Warnf(format string, v ...interface{})
-
- Level() LogLevel
- SetLevel(l LogLevel)
-
- ShowSQL(show ...bool)
- IsShowSQL() bool
-}