spitfirepm 1.40.230 → 1.40.232

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ const $ = require("jquery");
8
8
  const BrowserExtensionChecker_1 = require("./BrowserExtensionChecker");
9
9
  const RESTClientBase = require("./APIClientBase"); // avoid conflict with same in SwaggerClient when loaded by classic UI
10
10
  //import {dialog} from "jquery-ui";
11
- const ClientPackageVersion = "1.40.230";
11
+ const ClientPackageVersion = "1.40.232";
12
12
  // originally modified for typescript and linter requirements by Uladzislau Kumakou
13
13
  var LoggingLevels;
14
14
  (function (LoggingLevels) {
@@ -536,7 +536,8 @@ class sfRestClient {
536
536
  const RawResultIsArray = (r && Array.isArray(r));
537
537
  let rowCount = 1;
538
538
  if (!RawResultIsArray) {
539
- console.warn(`BuildViewModelForContext GA ${partName} ${typeof r} isArray ${Array.isArray(r)} - single row`, r);
539
+ if (sfRestClient._Options.LogLevel >= LoggingLevels.VerboseDebug)
540
+ console.log(`BuildViewModelForContext GA ${partName} ${typeof r} isArray ${Array.isArray(r)} - single row`, r);
540
541
  }
541
542
  else
542
543
  rowCount = r.length;