strict and scream modes together
- adrianbj
- Member | 31
Hi everyone,
Just started using Tracy and loving it, but noticed what I think is an issue with strict and scream modes together. It comes from /tracy/src/Tracy/Bar.php:59 where you are using the shutup operator to ignore a session_start error. Because this is always shown it prevents seeing other errors.
- David Grudl
- Nette Core | 8218
Scream mode is intended only for catching hidden error, not for normal usage. In code are tons of @ and they are documented and needed.
- adrianbj
- Member | 31
I am actually wondering about the combo of strict and scream. It seems to me that while it might be useful to show warnings/notices etc that are silenced via @, I don't see much point having them in scream mode. I'd rather they were just in the debug bar, but to make that happen, I can't force scream mode for normal warnings/notices. Any thoughts on maybe tweaking this behavior / options slightly?