serilog-sinks-sqlite icon indicating copy to clipboard operation
serilog-sinks-sqlite copied to clipboard

Recommended way of viewing logs.

Open sgmoore opened this issue 4 years ago • 2 comments

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?

sgmoore avatar Dec 26 '20 10:12 sgmoore

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

dahovey avatar Jun 11 '21 15:06 dahovey

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.

jedipi avatar Aug 31 '22 02:08 jedipi