You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `level` filter option now accepts numerical values similar to `facility`.
4
+
5
+
Example config:
6
+
```
7
+
filter f_severity {
8
+
level(4)
9
+
};
10
+
```
11
+
This is equivalent to
12
+
```
13
+
filter f_severity {
14
+
level("warning")
15
+
};
16
+
```
17
+
18
+
For more information, consult the [documentation](https://syslog-ng.github.io/admin-guide/080_Log/030_Filters/005_Filter_functions/004_level_priority.html).
0 commit comments