X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmain%2Fclasses%2Foutput%2Fdebug%2Fweb%2Fclass_DebugWebOutput.php;fp=inc%2Fmain%2Fclasses%2Foutput%2Fdebug%2Fweb%2Fclass_DebugWebOutput.php;h=4093172adf8973ef9635b03b0129d0d075894cb8;hb=de1f271c2bdb43725f6671ea6588a44cf33bf091;hp=ff003f663ae0bac714befaac0c5397e74ff0c082;hpb=46130e59d03880cc54ea2ddba9c660fe28d8a7d0;p=core.git diff --git a/inc/main/classes/output/debug/web/class_DebugWebOutput.php b/inc/main/classes/output/debug/web/class_DebugWebOutput.php index ff003f66..4093172a 100644 --- a/inc/main/classes/output/debug/web/class_DebugWebOutput.php +++ b/inc/main/classes/output/debug/web/class_DebugWebOutput.php @@ -88,7 +88,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer * @throws UnsupportedOperationException If this method is called */ public function streamData ($data) { - self::createDebugInstance(__CLASS__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.'); + self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.'); throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION); } @@ -111,7 +111,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer * @throws UnsupportedOperationException If this method is called */ public function seek ($offset, $whence = SEEK_SET) { - self::createDebugInstance(__CLASS__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] offset=' . $offset . ',whence=' . $whence); + self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] offset=' . $offset . ',whence=' . $whence); throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION); }