c# - Trace all handled exception -


i trying understand why deployed application not working properly. have pinned down problem particular update routine. sadly, routine embedded nothing try-catch.

bool requireupdate = false; try {     requireupdate = !client.isuptodate(); } catch{ } 

i need way exception without having recompile , deploy.

is there way modify app.config file can trace handled exceptions log file, regardless of how have been handled?

unfortunately there nothing can done handled exceptions, are handled (even if badly, in case).

the best way them rewrite/recompile/deploy.


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -