From db654ed310c0b6f1a3a9c20a27a66c80c002ad55 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 18 May 2016 23:12:52 -0700 Subject: [PATCH] print out authString --- cloudron.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloudron.js b/cloudron.js index 3e7abc7..6750ef3 100644 --- a/cloudron.js +++ b/cloudron.js @@ -537,7 +537,7 @@ Cloudron.prototype.saveSieveScript = function (owner, callback) { setTimeout(function () { socket.end(); - callback(new Error('Could not auth with sieve.\n' + data)); + callback(new Error('Could not auth with sieve with ' + authString + '.\n' + data)); }, 5000); // give it 5 seconds }); @@ -565,7 +565,7 @@ Cloudron.prototype.checkSieveScript = function (owner, callback) { setTimeout(function () { socket.end(); - callback(new Error('Could not auth with sieve.\n' + data)); + callback(new Error('Could not auth with sieve with ' + authString + '.\n' + data)); }, 5000); // give it 5 seconds });