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
Post a Comment