Skip to content

Commit

Permalink
Print client-side instrumentation error to stderr.
Browse files Browse the repository at this point in the history
  • Loading branch information
reid committed May 19, 2014
1 parent 4608aab commit 27bfa21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/client.js
Expand Up @@ -204,7 +204,7 @@ ClientBatch.prototype.provideTests = function () {
data = data.toString("utf8");
data = self.instrumenter.instrumentSync(data, file);
} catch (err) {
console.log("Unable to instrument file " + file + ": " + err);
console.warn("[yeti] Unable to instrument file " + file + ": " + err);
}
return reply(null, new Buffer(data, "utf8"));
};
Expand Down

0 comments on commit 27bfa21

Please sign in to comment.