mirror of
https://github.com/nasa/openmct.git
synced 2025-03-19 18:45:31 +00:00
debug
This commit is contained in:
parent
15d43d3855
commit
b27ce15dab
@ -196,14 +196,14 @@ export default class ObjectAPI {
|
||||
*/
|
||||
|
||||
get(identifier, abortSignal) {
|
||||
if (!requests[identifier]) {
|
||||
requests[identifier] = 0;
|
||||
}
|
||||
requests[identifier]++;
|
||||
|
||||
let keystring = this.makeKeyString(identifier);
|
||||
console.log('openmct get', keystring);
|
||||
const now = new Date();
|
||||
|
||||
if (!requests[keystring]) {
|
||||
requests[keystring] = 0;
|
||||
}
|
||||
requests[keystring]++;
|
||||
|
||||
if (this.cache[keystring] !== undefined) {
|
||||
return this.cache[keystring];
|
||||
|
Loading…
x
Reference in New Issue
Block a user