|
|
|
|
|
by stonemetal12
525 days ago
|
|
Depends on how your app is structured, but it very well can be. badvalue = dobadthing();
dostuffwith(badvalue); Depending on the indirection between dobadthing() and the place that chokes on badvalue the stack trace can be completely worthless. It is one of the reasons people hated the original Spring. Claimed it decoupled stuff but all it really did was obfuscate. I have seen similar claims made about Clojure. Bad data coming from somewhere, but no way to trace it through the system. Sure you can filter bad data in to the garbage can, but that just masks the issue not fix it. |
|