Index: core/kernel/utility/debugger/debugger.css IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/debugger/debugger.css (revision 15965) +++ core/kernel/utility/debugger/debugger.css (revision ) @@ -132,6 +132,5 @@ padding: 0px; } -.dbg-error-row-hidden tr[data-row-type="error"], .dbg-warning-row-hidden tr[data-row-type="warning"], -.dbg-notice-row-hidden tr[data-row-type="notice"], .dbg-sql-row-hidden tr[data-row-type="sql"], +.dbg-error-row-hidden tr[data-row-type="error"], .dbg-sql-row-hidden tr[data-row-type="sql"], .dbg-other-row-hidden tr[data-row-type="other"] {display: none} \ No newline at end of file Index: core/kernel/utility/debugger.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- core/kernel/utility/debugger.php (revision 15965) +++ core/kernel/utility/debugger.php (revision ) @@ -202,10 +202,6 @@ const ROW_TYPE_ERROR = 'error'; - const ROW_TYPE_WARNING = 'warning'; - - const ROW_TYPE_NOTICE = 'notice'; - const ROW_TYPE_SQL = 'sql'; const ROW_TYPE_OTHER = 'other'; @@ -234,7 +230,7 @@ */ private $_lastErrorProcessed = false; - private $_filterTypes = Array ('error', 'warning', 'notice', 'sql', 'other'); + private $_filterTypes = Array ('error', 'sql', 'other'); /** * Counts warnings on the page @@ -700,15 +696,6 @@ break; case 'error': - $error_map = array( - 'Fatal Error' => self::ROW_TYPE_ERROR, - 'Warning' => self::ROW_TYPE_WARNING, - 'Notice' => self::ROW_TYPE_NOTICE, - ); - - return $error_map[$this->getErrorNameByCode($data['no'])]; - break; - case 'exception': return self::ROW_TYPE_ERROR; break;