Standardized logging implementation for TaskHub microservices using Serilog.
The Logger module ensures that all microservices produce consistent, structured logs that are easy to query and visualize.
ServiceNameServiceVersionEnvironmentTraceId and SpanId (correlation).Logging can be configured via appsettings.json using the standard Serilog configuration schema.
"Serilog": {
"MinimumLevel": "Information",
"WriteTo": [
{ "Name": "Console" }
]
}