This repository has been archived on 2026-03-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
scabiosa/SQL/LogTypes.go
2021-11-22 21:28:18 +01:00

10 lines
107 B
Go

package SQL
type LogType int64
const(
LogInfo LogType = 1
LogWarning = 2
LogError = 3
LogFatal = 4
)