Merge pull request #30 from netbenix/SCABIOSA-9
refactor(SQL): Fixed declaration of LogType constants
This commit is contained in:
commit
4cae735e59
1 changed files with 4 additions and 4 deletions
|
|
@ -5,10 +5,10 @@ import "fmt"
|
||||||
type LogType int64
|
type LogType int64
|
||||||
|
|
||||||
const (
|
const (
|
||||||
LogInfo LogType = 1
|
LogInfo LogType = iota
|
||||||
LogWarning = 2
|
LogWarning
|
||||||
LogError = 3
|
LogError
|
||||||
LogFatal = 4
|
LogFatal
|
||||||
)
|
)
|
||||||
|
|
||||||
func (e LogType) String() string {
|
func (e LogType) String() string {
|
||||||
|
|
|
||||||
Reference in a new issue