diff --git a/src/api/objects/ObjectAPI.js b/src/api/objects/ObjectAPI.js index c1be1581f6..2e3ff4dfac 100644 --- a/src/api/objects/ObjectAPI.js +++ b/src/api/objects/ObjectAPI.js @@ -158,6 +158,8 @@ export default class ObjectAPI { */ get(identifier, abortSignal, forceRemote = false) { let keystring = this.#makeKeyString(identifier); + console.log('openmct get', keystring); + const now = new Date(); if (!forceRemote) { if (this.cache[keystring] !== undefined) { @@ -201,6 +203,8 @@ export default class ObjectAPI { this.destroyMutable(mutableDomainObject); } + console.log('openmct get result', keystring, (new Date() - now) / 1000); + return domainObject; }) .catch((error) => {