diff --git a/.changeset/selfish-rivers-fetch.md b/.changeset/selfish-rivers-fetch.md new file mode 100644 index 0000000000..8b84766662 --- /dev/null +++ b/.changeset/selfish-rivers-fetch.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog-backend': patch +--- + +Make entity collection errors a little quieter in the logs. diff --git a/plugins/catalog-backend/src/processing/DefaultCatalogProcessingEngine.ts b/plugins/catalog-backend/src/processing/DefaultCatalogProcessingEngine.ts index 3acf811559..b17482641c 100644 --- a/plugins/catalog-backend/src/processing/DefaultCatalogProcessingEngine.ts +++ b/plugins/catalog-backend/src/processing/DefaultCatalogProcessingEngine.ts @@ -195,7 +195,7 @@ export class DefaultCatalogProcessingEngine { const location = unprocessedEntity?.metadata?.annotations?.[ANNOTATION_LOCATION]; for (const error of result.errors) { - this.logger.warn(error.message, { + this.logger.debug(error.message, { entity: entityRef, location, });