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
While testing pattern matching with "echo some-message | systemd-cat", I found that none of the patterns matched my test messages no matter what.
It turns out that there is a continue operator in the main code that makes unreachable the part of the code where messages are evaluated for matching. After removing that continue operator, everything appears to work just fine as it should.
I would also appreciate merging the code revisions in the "next" branch into the "master" branch.
The text was updated successfully, but these errors were encountered:
While testing pattern matching with "echo some-message | systemd-cat", I found that none of the patterns matched my test messages no matter what.
It turns out that there is a continue operator in the main code that makes unreachable the part of the code where messages are evaluated for matching. After removing that continue operator, everything appears to work just fine as it should.
I would also appreciate merging the code revisions in the "next" branch into the "master" branch.
The text was updated successfully, but these errors were encountered: