Skip to content

Commit

Permalink
issue #72
Browse files Browse the repository at this point in the history
  • Loading branch information
zaggino committed Sep 12, 2016
1 parent 89eab2e commit 97dee35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extensibility/Package.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ define(function (require, exports, module) {
_nodeConnectionDeferred.resolve();
},
function () { // Failed to connect
console.error("[Extensions] Failed to connect to node", arguments);
console.error(`ExtensionManagerDomain failed to load: ${arguments}`);
_nodeConnectionDeferred.reject();
}
);
Expand Down
2 changes: 1 addition & 1 deletion src/utils/PerfUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ define(function (require, exports, module) {
*/
function _markStart(id, time) {
if (activeTests[id.id]) {
console.error("Recursive tests with the same id are not supported. Timer id: " + id.id);
console.warn("Recursive tests with the same id are not supported. Timer id: " + id.id);
}

activeTests[id.id] = { startTime: time };
Expand Down

0 comments on commit 97dee35

Please sign in to comment.