Browse Source

enable debug

andre 1 year ago
parent
commit
885a19eb47
1 changed files with 9 additions and 0 deletions
  1. 9 0
      app/Libs/Zimbra/Components/Api/Soap/Client.php

+ 9 - 0
app/Libs/Zimbra/Components/Api/Soap/Client.php

@@ -60,6 +60,15 @@ class Client implements ClientInterface
      */
      */
     public function __construct($server, $port = 7071, $username, $password, $user = "admin")
     public function __construct($server, $port = 7071, $username, $password, $user = "admin")
     {
     {
+
+        logModuleCall(
+            'zimbraEmail',
+            __FUNCTION__,
+            $server,
+            "Debug3",
+            $username
+        );
+
         $this->connection = new Connection($server, $port, $username, $password, $user);
         $this->connection = new Connection($server, $port, $username, $password, $user);
         $this->connection->login();
         $this->connection->login();
     }
     }