Skip to content

Commit

Permalink
#0: ensure query key is grayed out in log
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Jul 26, 2023
1 parent 435ee9d commit 9ba85ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/metadataTypes/Query.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ class Query extends MetadataType {
objectId = await this._getObjectIdForSingleRetrieve(key);
if (!objectId) {
// avoid running the rest request below by returning early
Util.logger.info(`Downloaded: ${this.definition.type} (0) - Key: ${key}`);
Util.logger.info(
`Downloaded: ${this.definition.type} (0)${Util.getKeysString(key)}`
);
return { metadata: {}, type: this.definition.type };
}
}
Expand Down

0 comments on commit 9ba85ad

Please sign in to comment.