We have production code that is not easily deployed in a test area. We also have a new library of code that we would like to "plug in" to the production code.
The production code would be making a few calls to the new code. Each of these calls are not mission critical (updating analytic information in a database).
If I surrounded all the calls to the new code with "try{...} catch(exception)" to avoid crashing the production code....
A) What are some problems I am exposing the new code to
B) How stinky is this.
c) what would you do.