Currently in my project, I am logging exceptions by using elmah
in a separate table in SQL Server. Is it possible to store these elmah exceptions in Azure storage only, not in SQL Server? Since I do not want to log errors in my database.
//web.config
<elmah>
<security allowRemoteAccess="1" />
<errorLog type="Elmah.SqlErrorLog, Elmah"
connectionStringName="DatabaseConnectionStringName" />
</elmah>
Currently in my web.config
, I configure for elmah logs in SQL Server.
Set allowRemoteAccess = 1 and added errorlog type as Elmah.SqlErrorLog
. Can
anyone help?
Thanks in advance.