views:

61

answers:

2

Hi,

I've just starting looking at a site in place at work. They're using Elmah to log errors.

It seems to be logging fine, but in the web interface, when I tell Elmah to show me 100 errors per page, it only shows the most recent 15.

Then when I click on "Download Log" I only get shown 15 errors in the CSV.

Anyone know how I can configure it to keep all the errors?

Or can someone point me to some docs on how to do this?

Thanks a lot!

-Evan

+1  A: 

You might want to try the elmah discussion group first: http://groups.google.com/group/elmah

mjd79
Thanks I'll give that a go.
Ev
+2  A: 

Looks like there is no database configured to log errors to.

By default it only logs the last 15 errors to memory if it has no where to write it to...

ggonsalv
Ah so it must have no where to write. Do you know where I set where it writes?
Ev
This is the link I learned from.http://dotnetslackers.com/articles/aspnet/errorloggingmodulesandhandlers.aspx
ggonsalv
Thanks ggonsalv!Specifically:<elmah> <errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/ElmahLogs" /></elmah>
Ev