-
Notifications
You must be signed in to change notification settings - Fork 4
Description
I couldn't find any documentation on available keys/customizations to use in appSettings, so forgive me if this exists, but according to the documentation in order to point ELMAH to a database (SQL) you have to duplicate the connectionString with a connectionString named "elmah:sql".
To use one of these, create a connection string entry in your web.config named elmah:LOGNAME where LOGNAME is the error log name minus the ErrorLog suffix (case-insensitive). So to use SqlErrorLog, create a connection string named elmah:sql.
Its probably just pedantic, but I'd rather not duplicate an existing connection string to rename it. Previous versions of ELMAH had this configuration option:
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName=""/>
I realize this is a "Configuration-free" and I'm asking for configuration options.
Thanks, in advance.