diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-30 12:15:32 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-03-30 12:15:32 +0100 |
commit | 4fc11aa0deea5a4e1b2b94adaf1fdc3dd831305f (patch) | |
tree | ab9f4e0ba7021b0870a75497de9156f04a80c98a | |
parent | 03686454c92239b44848767eadce9097aeec8223 (diff) | |
download | webadmin-4fc11aa0deea5a4e1b2b94adaf1fdc3dd831305f.tar.gz |
More verbose loggin
-rw-r--r-- | lib/kolab_client_task.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/kolab_client_task.php b/lib/kolab_client_task.php index 010e1ce..d454215 100644 --- a/lib/kolab_client_task.php +++ b/lib/kolab_client_task.php @@ -104,7 +104,10 @@ class kolab_client_task */ private function api_init() { - $url = $this->config_get('api_url', ''); + $url = $this->config_get('api_url', ''); + + // TODO: Debug logging + console($url); if (!$url) { $url = kolab_utils::https_check() ? 'https://' : 'http://'; @@ -113,6 +116,9 @@ class kolab_client_task $url .= '/api'; } + // TODO: Debug logging + console($url); + $this->api = new kolab_client_api($url); } |