remove v1

This commit is contained in:
xjasonlyu
2020-11-05 18:35:45 +08:00
parent 0d634b48d8
commit 6f89409a03
289 changed files with 0 additions and 70137 deletions

View File

@@ -1,28 +0,0 @@
package log
const (
DEBUG Level = iota
INFO
WARNING
ERROR
SILENT
)
type Level int
func (l Level) String() string {
switch l {
case INFO:
return "info"
case WARNING:
return "warning"
case ERROR:
return "error"
case DEBUG:
return "debug"
case SILENT:
return "silent"
default:
return "unknown"
}
}