add missing trace loglevel (#2007)

This commit is contained in:
7dJx1qP 2021-11-14 20:26:49 -05:00 committed by GitHub
parent 7547a1dd39
commit aa50dbf5e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,7 @@
scalar Time
enum LogLevel {
Trace
Debug
Info
Progress

View file

@ -11,6 +11,8 @@ func getLogLevel(logType string) models.LogLevel {
switch logType {
case "progress":
return models.LogLevelProgress
case "trace":
return models.LogLevelTrace
case "debug":
return models.LogLevelDebug
case "info":