saleem-mirza / serilog-sinks-sqlite

A Serilog sink that writes to SQLite
Apache License 2.0
56 stars 44 forks source link

Recommended way of viewing logs. #32

Open sgmoore opened 3 years ago

sgmoore commented 3 years ago

Don't have an issue, so apologies if this is off-topic.

I have an application that stores its log files using this library and was wondering what is the best way of reading the log files.

Currently I just query them in LinqPad, but is it difficult to marry up the Properties with the RenderedMessage.

Was wondering what other people used?

dahovey commented 3 years ago

I use SQLite Browser (https://sqlitebrowser.org/). I agree, it is a little tedious to view the properties/message together.

jedipi commented 2 years ago

I think the data store in the RenderedMessage column is not a RenderedMessage. It is just the message template.

The best option is change the code to write the actual RenderedMessage into database.