Skip to content

Commit efca52d

Browse files
committed
Merge pull request #177 from buddycloud/master
Fix express version to fix bugs
2 parents aa0b764 + f516ace commit efca52d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"dependencies": {
1616
"connect": "2.4.x",
17-
"express": "3.x",
17+
"express": "3.5.1",
1818
"ltx": "~0.3.0",
1919
"node-expat": "~2.0.0",
2020
"jwt-simple": "0.1.x",

src/account.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function registerAccount(req, res) {
7878
});
7979

8080
client.on('error', function(err) {
81-
console.log(err);
81+
console.log('Client error', err);
8282
res.send(503);
8383
});
8484
}

0 commit comments

Comments
 (0)