Questions tagged [structured-logging]

47 questions
-1
votes
2 answers

Is there a human readable structured logging fomat?

I'd like my program to write to its stderr a log that is simultaneously human and machine readable. Requirements: A log is a stream of messages. I.e. I can't write just one big xml or json document. Every message has to be parseable separately…
-2
votes
1 answer

Named placeholders should not be numeric values in Serilog and advantages of using structured logging VS string interpolation in Serilog?

Why in Serilog, named placeholders should not be numeric values, but numeric placeholders do not generate a warning with Console.WriteLine. e.g: _log.LogInformation("some data - {0} and data2: {1} ", data1, data2); causes a warning named…
Explorer
  • 161
  • 1
  • 4
  • 16
1 2 3
4