TranslatorSRI / NodeNormalization

Service that produces Translator compliant nodes given a curie
MIT License
9 stars 6 forks source link

Remove try blocks that make debugging harder #180

Open gaurav opened 1 year ago

gaurav commented 1 year ago

These try blocks catch all the exceptions and report them to the logger, but I'm pretty sure that will happen anyway. By doing this, they get rid of the line-number information that would help debug what is causing the errors. Try blocks that catch exceptions and change the return value have been left untouched.

WIP: need to test this out and make sure this approach makes sense.