You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe your suggestion
It would be great if the connections string property of the the WriteTo:AzureTableStorage section of appsettings would allow a named connection string that it reads from the root connection strings section of appsettings. Some other serilog sinks already provide this functionality.
So what I mean is:
{
"ConnectionStrings": {
"AzureTableStorage": " <connectionString>"
},
"Serilog": {
"WriteTo": [
{
"Name": "AzureTableStorage",
"Args": {
"storageTableName": "<TableName>",
"connectionString": "AzureTableStorage"// This value maps to property in ConnectionStrings section
}
}
]
}
}
The text was updated successfully, but these errors were encountered:
Describe your suggestion
It would be great if the connections string property of the the WriteTo:AzureTableStorage section of appsettings would allow a named connection string that it reads from the root connection strings section of appsettings. Some other serilog sinks already provide this functionality.
So what I mean is:
The text was updated successfully, but these errors were encountered: