Skip to content

Commit

Permalink
chore(datasource/docker): promote ECR auth errors to warnings (#24521)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Sep 28, 2023
1 parent d708f9a commit f58cb01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/modules/datasource/docker/ecr.ts
Expand Up @@ -36,7 +36,7 @@ export async function getECRAuthToken(
);
} catch (err) {
logger.trace({ err }, 'err');
logger.debug('ECR getAuthorizationToken error');
logger.warn('ECR getAuthorizationToken error');
}
return null;
}
Expand Down

0 comments on commit f58cb01

Please sign in to comment.