Files
UnrealEngineUWP/Engine/Source/Programs/Horde/Horde.Build/appsettings.json
Ben Marsh d04863c0c3 Horde: Enable trace logging for PerforceService. Also add support for configuring console log output level.
#preflight none

[CL 21949339 by Ben Marsh in ue5-main branch]
2022-09-10 12:56:25 -04:00

31 lines
815 B
JSON

{
"Horde": {
"ConsoleLogLevel": "Debug",
"DashboardUrl": "https://localhost:3000",
"DisableAuth": true,
"CorsEnabled": true,
"CorsOrigin": "https://localhost:5003;http://localhost:3000",
"LogFileProviderType": "Local",
"Storage": {
"Url": "https://localhost:57001"
}
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"MongoDB": "Warning", // For bundled MongoDB output
"Redis": "Warning", // For bundled Redis output
"Microsoft": "Warning",
"Microsoft.AspNetCore": "Warning",
"Microsoft.Hosting": "Information",
"Horde.Build.Authentication": "Warning",
"System.Net.Http.HttpClient": "Warning",
"Grpc": "Warning",
"Horde.Build.Issues.IssueService": "Debug",
"Horde.Build.Perforce.PerforceService": "Verbose"
}
}
}
}