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#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -