Look at [ConfigurationManager.GetSection()][1] - this should get you most of the way there.. however, I think you're better off just changing between debug and release modes and letting the compiler determine to execute the "#if DEBUG" enclosed statements.

    #if DEBUG
    /* re-throw the exception... */
    #else
    /* write something in the event log... */
    #endif

the above will work just fine, just make sure you have at least two build configurations (right-click the project you're working on and go to "Properties" there's a section in there on Builds) - make sure that one of those builds has the "define DEBUG" checked and the other does not.


  [1]: http://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.getsection.aspx