Merge pull request #32361 from b718/brzhao/change-logger-level/issue/31066

fix(logger-level): changed logger level of user photo loading to debug
This commit is contained in:
Andre Wanlin
2026-01-19 15:17:59 -06:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Changed the logger level from 'warning' to 'debug' when we are unable to load the user's photo.
@@ -511,7 +511,7 @@ async function transformUsers(
);
}
} catch (e) {
logger.warn(`Unable to load user photo for`, {
logger.debug(`Unable to load user photo for`, {
user: user.id,
error: e,
});