Quellcode durchsuchen

Merge pull request #160 from victorruan/patch-1

self::log is wrong
walkor vor 8 Jahren
Ursprung
Commit
5e8e57692b
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      Connection/TcpConnection.php

+ 2 - 2
Connection/TcpConnection.php

@@ -403,10 +403,10 @@ class TcpConnection extends ConnectionInterface
                 try {
                     call_user_func($this->onSslHandshake, $this);
                 } catch (\Exception $e) {
-                    self::log($e);
+                    Worker::log($e);
                     exit(250);
                 } catch (\Error $e) {
-                    self::log($e);
+                    Worker::log($e);
                     exit(250);
                 }
             }