fix: Log filter in wrong direction
This commit is contained in:
parent
9b3768300e
commit
3a6d224348
|
|
@ -1,3 +1,6 @@
|
||||||
|
## 0.3.3
|
||||||
|
- fix: Log filter in wrong direction
|
||||||
|
|
||||||
## 0.3.2
|
## 0.3.2
|
||||||
- fix: Logs should only printed if loglevel is high enough
|
- fix: Logs should only printed if loglevel is high enough
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ class Logs {
|
||||||
|
|
||||||
void addLogEvent(LogEvent logEvent) {
|
void addLogEvent(LogEvent logEvent) {
|
||||||
outputEvents.add(logEvent);
|
outputEvents.add(logEvent);
|
||||||
if (logEvent.level.index >= level.index) {
|
if (logEvent.level.index <= level.index) {
|
||||||
logEvent.printOut();
|
logEvent.printOut();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
name: matrix_api_lite
|
name: matrix_api_lite
|
||||||
description: Dead simple data model for the matrix.org client-server API.
|
description: Dead simple data model for the matrix.org client-server API.
|
||||||
version: 0.3.2
|
version: 0.3.3
|
||||||
homepage: https://famedly.com
|
homepage: https://famedly.com
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue