refactor(SQL): Fixed declaration of LogType constants

This commit is contained in:
netbenix 2022-02-22 13:47:36 +01:00 committed by GitHub
parent 1b8e1f4e90
commit 0d45cf3261
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {