Hi,
I try to follow the guidelines Optimizing API Performance in PowerShell Universal (ironmansoftware.com)
Running PSU in Azure Docker, I am trying to reduce the SystemLog level. I tried adding “SystemLogLevel” as name with value “Error” in the Azure Configuration but it does not seems to work, I continue receiving Info messages in the database.
Maybe I am wrong. I try to optimize the API following the guidelines. What I see in the PSU database is millions of rows in “LogEntry” table. Everytime my Endpoints is consumed, several info logs are created. I want to disable this for perfomance and to reduce DB consumption.
In the article, there is the New-PSULoggingTarget -Type “Database” -Properties @{
} -Level “Error”
but it is not clear where I need to execute it.