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

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

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -