feat: Add serilog (#5)

This commit is contained in:
2025-09-27 20:59:34 +02:00
committed by Myx
parent 48f7065a9a
commit 046180fe63
5 changed files with 42 additions and 2 deletions

View File

@@ -124,6 +124,14 @@ jobs:
"Microsoft.AspNetCore" = "Warning"
}
}
Seq = @{
ServerUrl = "https://log.azaaxin.com"
ApiKey = "KEY"
MinimumLevel = "Trace"
LevelOverride = @{
Microsoft: "Warning"
}
}
ApiConfiguration = @{
EspConfiguration = @{
InformationBoardImageUrl = "http://server_ip:port/home/default.jpg"
@@ -178,6 +186,14 @@ jobs:
"Microsoft.AspNetCore" = "Warning"
}
}
Seq = @{
ServerUrl = ${{ vars.SEQ_URL }}
ApiKey = ${{ secrets.seq_api_key }}
MinimumLevel = "Trace"
LevelOverride = @{
Microsoft: "Warning"
}
}
ApiConfiguration = @{
EspConfiguration = @{
InformationBoardImageUrl = "${{ vars.ESP_IMAGE_URL }}"