1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-04 12:17:35 +02:00

Missed a continue

This commit is contained in:
Liam Le Brun
2015-07-15 14:02:42 +01:00
parent e021bbd4b2
commit a287cc630e

View File

@@ -71,6 +71,7 @@ class IntrospectionProcessor
} }
} elseif(in_array($trace[$i]['function'], $this->skipFunctions)) { } elseif(in_array($trace[$i]['function'], $this->skipFunctions)) {
$i++; $i++;
continue;
} }
break; break;