Replies: 1 comment 1 reply
-
That would be a great feature of course, but is more complex to develop :) I might have some time later this year, but if you feel like you can also tackle this, feel free to contribute a PR! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to be able search / filter logs by context. For example, given the following log call in my app.
It would be nice if I could search for
some_identifier:12345
(or something similar) and see only log messages with the context of'some_identifier' => '12345'
.This is something I've been able to set up with Tagging in Laravel Telescope but the Telescope log viewer isn't quite as suitable to viewing lots of logs. I much prefer this package for that.
Right now this is indirectly possible by searching for
"some_identifier":"12345"
since it searches the raw log context. However, this isn't very intuitive or immediately apparent since log contexts are pretty printed (i.e. with spaces and newlines added for formatting) causing the output and search string to not match.Beta Was this translation helpful? Give feedback.
All reactions