Skip to content

Commit b67bbdc

Browse files
committed
print traceback as string
1 parent 10472d9 commit b67bbdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ exports.Server = function Server(bsClient, workers) {
111111
//console.log("Tests run:", query.tests_run);
112112
if (query.tracebacks) {
113113
query.tracebacks.forEach(function (traceback) {
114-
console.log("[%s] Error: %s", worker.string, traceback);
114+
console.log("[%s] Error:", worker.string, traceback);
115115
});
116116
}
117117
response.end();

0 commit comments

Comments
 (0)