Merge pull request #30 from netbenix/SCABIOSA-9

refactor(SQL): Fixed declaration of LogType constants
This commit is contained in:
netbenix 2022-02-22 13:48:43 +01:00 committed by GitHub
commit 4cae735e59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,10 +5,10 @@ import "fmt"
type LogType int64
const (
LogInfo LogType = 1
LogWarning = 2
LogError = 3
LogFatal = 4
LogInfo LogType = iota
LogWarning
LogError
LogFatal
)
func (e LogType) String() string {