From f769308a1f3a46839a933f22dcf16263293cfef1 Mon Sep 17 00:00:00 2001 From: Arthur Britto Date: Sun, 5 May 2013 20:38:08 -0700 Subject: [PATCH] UT: Log error messages from server. --- test/testutils.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/testutils.js b/test/testutils.js index 54092a19fa..53bc3c8560 100644 --- a/test/testutils.js +++ b/test/testutils.js @@ -126,6 +126,9 @@ var build_teardown = function (host) { data.remote .on('disconnected', callback) + .on('error', function (m) { + console.log("server error: ", m); + }) .connect(false); }, function stopServerStep(callback) {