{ "Serilog": { "Using": [ "Serilog.Sinks.Console", "Serilog.Sinks.File", "Serilog.Sinks.Email" ], "MinimumLevel": { "Default": "Information", "Override": { "Microsoft.AspNetCore": "Warning", "Microsoft.AspNetCore.Hosting": "Information", "Microsoft.AspNetCore.Routing": "Warning", "System.Net.Http.HttpClient": "Warning", "EmailApi": "Information" } }, "WriteTo": [ { "Name": "Console", "Args": { "outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {SourceContext}: {Message:lj}{NewLine}{Exception}" } }, { "Name": "File", "Args": { "path": "logs/email-api-.log", "rollingInterval": "Day", "retainedFileCountLimit": 30, "outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {SourceContext}: {Message:lj}{NewLine}{Exception}" } }, { "Name": "Email", "Args": { "restrictedToMinimumLevel": "Error", "from": "", "to": "", "host": "", "credentials": { "userName": "", "password": "" }, "port": 587, "connectionSecurity": "StartTls", "subject": "[myAi] Email API Error Alert", "body": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} [{Level:u3}] {SourceContext}{NewLine}{Message:lj}{NewLine}{Exception}" } } ], "Enrich": [ "FromLogContext", "WithMachineName", "WithEnvironmentName" ] }, "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning", "Microsoft.AspNetCore.Hosting": "Information", "Microsoft.AspNetCore.Routing": "Warning", "System.Net.Http.HttpClient": "Warning", "EmailApi": "Information" } }, "LogEnvironmentOnStartup": true, "AllowedHosts": "*", "KeyVault": { "VaultUri": "", "Enabled": false }, "Database": { "Host": "localhost", "Port": 1433, "Name": "MyAiDb", "User": "sa", "Password": "", "TrustServerCertificate": true }, "InternalApi": { "ApiKey": "", "RequireApiKey": true }, "Smtp": { "Host": "mail.easysoft.ro", "Port": 587, "Username": "no-reply@easysoft.ro", "Password": "", "UseStartTls": true }, "FileStorage": { "Path": "Files" } }