mirror of
https://github.com/aurc/loggo.git
synced 2026-04-26 08:25:56 +03:00
[GH-ISSUE #23] Local Filter CONTAINS always checks Stacktrace column #6
Labels
No labels
need more info
need more info
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/loggo#6
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @arthuratplayableworlds on GitHub (Oct 9, 2024).
Original GitHub issue: https://github.com/aurc/loggo/issues/23
I'm using Windows, in cmd.
At first I thought the local filtering just didn't work, but after playing with it, I've found some things...
If I do a simple search, like
"INFO", it will search for that text in all fields, as I'd expect.If I do
Level CONTAINS "INFO", it returns no results (although I clearly have logs with Level INFO.)Interestingly, if I do
Level CONTAINS "Logger", I get results! But these results contain the word "Logger" in the "Stacktrace" column, not in the Level column.This seems to be 100% consistent. If I do
Message CONTAINS "Logger", I also get results where Stacktrace includes "Logger". So regardless of what column I specify in the filter, it always uses the stacktrace column.In this screenshot you can see I'm checking if the timestamp contains Logger. Obviously, it doesn't.

Here's the expanded log:
@aurc commented on GitHub (Oct 9, 2024):
Thanks for the feedback, I will have a look and try to reproduce; in
between if you could send a sample log would also be greatly appreciated.
It could be related to some weird encoding therefore a sample file might be
useful.
On Thu, 10 Oct 2024 at 5:55 am, Arthur @.***> wrote:
@aurc commented on GitHub (Oct 10, 2024):
@arthuratplayableworlds, I could not reproduce, please provide a sample log, any template you're using to render the logs and I'll try reproducing again.
@arthuratplayableworlds commented on GitHub (Oct 11, 2024):
I can't attach the template but this is its contents:
and the log:
log.txt
@arthuratplayableworlds commented on GitHub (Oct 21, 2024):
@aurc updated