From 97dee35493e727fc29505f81540f694462c1aa30 Mon Sep 17 00:00:00 2001 From: Martin Zagora Date: Mon, 12 Sep 2016 10:58:09 +1000 Subject: [PATCH] issue #72 --- src/extensibility/Package.js | 2 +- src/utils/PerfUtils.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/extensibility/Package.js b/src/extensibility/Package.js index 1119f6779b2..23f393a13bc 100644 --- a/src/extensibility/Package.js +++ b/src/extensibility/Package.js @@ -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(); } ); diff --git a/src/utils/PerfUtils.js b/src/utils/PerfUtils.js index edf868191fd..8858a38f9aa 100644 --- a/src/utils/PerfUtils.js +++ b/src/utils/PerfUtils.js @@ -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 };