Yeah, still here. Added __METHOD__
authorRoland Häder <roland@mxchange.org>
Fri, 18 Oct 2013 21:53:28 +0000 (21:53 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 18 Oct 2013 21:53:28 +0000 (21:53 +0000)
application/hub/main/helper/connection/class_BaseConnectionHelper.php

index 64360b954fbb806b3e2f0807d8d4d1ffcfd8a477..804a2fc5347d88225a6771ab4fe75d07b853e17b 100644 (file)
@@ -629,8 +629,9 @@ class BaseConnectionHelper extends BaseHubSystemHelper implements Registerable,
         * @return      void
         */
        protected function socketErrorOperationInProgressHandler ($socketResource, array $recipientData) {
+               // Get socket type
                $type = socket_get_option($socketResource, SOL_SOCKET, SO_TYPE);
-               die('type='.$type.PHP_EOL);
+               die(__METHOD__.':type='.$type.PHP_EOL);
                self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __LINE__ . ']: Operation is now in progress, this is usual for non-blocking connections and is no bug.');
        }
 }