print out authString

This commit is contained in:
Girish Ramakrishnan 2016-05-18 23:12:52 -07:00
parent 3102d7a6af
commit db654ed310
1 changed files with 2 additions and 2 deletions

View File

@ -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
});