禁用XDebug输出通知

I'm trying to figure out how to completely silence XDebug's output in my PHP file. I've already added xdebug_disable(); to my code, but I'm still getting the following output:

<br >
<b>Notice</b>:  Undefined property: stdClass:: 

...(the error message isn't what I'm concerned about, just stopping XDebug from outputting anything)

The notice isn't preventing my code from completing, and I know what's causing the issue that XDebug is trying to warn me about. But I don't want that extra HTML rendering. Anyone have any ideas?