We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b837f commit 41cf413Copy full SHA for 41cf413
1 file changed
lib/handlers/graphql-ld-handler.js
@@ -325,7 +325,9 @@ module.exports = class GraphQLLDHandler extends Handler {
325
const value = selection.arguments[0].value.value;
326
result.push({path: currentPath, value});
327
} else if (selection.selectionSet) {
328
- console.log('Static IDs: Nested selection sets are ignored at the moment.');
+ if (this.logger) {
329
+ this.logger.info('Static IDs: Nested selection sets are ignored at the moment.');
330
+ }
331
}
332
});
333
0 commit comments