浏览代码

[Logs] Fixed severity level

feature/authentication-tests
Robin Thoni 9 年前
父节点
当前提交
f4ee5eef00
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      Logs/DataAccess/Logger.cs

+ 2
- 0
Logs/DataAccess/Logger.cs 查看文件

@@ -25,6 +25,8 @@ namespace iiie.Logs.DataAccess
25 25
                 return TraceEventType.Error;
26 26
             if (status == ResultStatus.PermissionError)
27 27
                 return TraceEventType.Error;
28
+            if (status == ResultStatus.InternalError)
29
+                return TraceEventType.Error;
28 30
             if (status == ResultStatus.InputError)
29 31
                 return TraceEventType.Warning;
30 32
             if (status == ResultStatus.NotFound)

正在加载...
取消
保存