ELMAH error logging in azure storage

460 views Asked by At

I'm using ELMAH error logging in my web application. I've looked through couple of topics. But there's one thing I can't understand anyway. I want ELMAH to read the logs from the DB , that I'm pointing. It's Azure Storage table, in which there are lot of error logs.

  <elmah>
    <security allowRemoteAccess="yes" />
    <errorLog type="what to write here ?" connectionStringAppKey="myConnectionString" />
  </elmah>

I've got ErrorEntity.cs file too, and I've edited the connection string variables in it. But it is continuing to read the errors from my local computer. Can You please help me with this question ?

Thanks.

1

There are 1 answers

0
UnuS76 On

Ok guys. Just solved my issue. I was giving the wrong assembly path in the web config file, so it couldn't find my dll file.

Thanks.