@followthecode/cli
Version:
CLI tool for Git repository analysis and data collection
35 lines • 806 B
JSON
{
"Serilog": {
"Using": [
"Serilog.Sinks.Console"
],
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Enrich": [
"FromLogContext",
"WithThreadId",
"WithMachineName",
"WithEnvironmentUserName",
"WithExceptionDetails",
"WithOpenTelemetryTraceId",
"WithOpenTelemetrySpanId",
"WithOpenTelemetryServiceName"
],
"Properties": {
"ApplicationName": "FTC-CLI"
},
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] [{ThreadId}] [{TraceId}/{SpanId}] {Message:lj}{NewLine}{Exception}"
}
}
]
}
}