|
|
|
|
|
by sagichmal
2533 days ago
|
|
Stack traces are, for me, too much noise, and not enough signal. I prefer reading annotations added (prefixed) by programmers deliberately. File and line information for the call stack leading to the error maybe provide value in the dev cycle (e.g. when fixing tests) but basically don't in logs in production. This is all to say: I can understand why they aren't more naturally part of errors, and I think it also helps explain why they are part of panics. And with all that said, I wouldn't object to making stack traces easier to add to errors, as long as it was opt-in. |
|