I just want to disable the errors in tracy bar when they are of type E_NOTICE, how can I do that?
set error_reporting(E_ALL & ~E_NOTICE) after Tracy\Debugger::enable()
error_reporting(E_ALL & ~E_NOTICE)
Tracy\Debugger::enable()
Well, that results in E_NOTICE shown in tracy bar and E_WARNINGS to be hidden. When I use error_reporting(E_ALL ^ ~E_WARNING) notices are gone, and warnings are still shown. Works for me.
error_reporting(E_ALL ^ ~E_WARNING)