Ist es möglich, mit ELMAH Folgendes zu tun?
logger.Log(" something");
Ich mache so etwas:
try
{
// Code that might throw an exception
}
catch(Exception ex)
{
// I need to log error here...
}
Diese Ausnahme wird von ELMAH nicht automatisch protokolliert, da sie behandelt wurde.