Skip to content

Commit

Permalink
fix(azure): reduce logging (#30738)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Kriese <[email protected]>
  • Loading branch information
PhilipAbed and viceice authored Aug 13, 2024
1 parent c897fc0 commit aff8991
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/modules/platform/azure/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -827,13 +827,15 @@ export function maxBodyLength(): number {

/* istanbul ignore next */
export function findIssue(): Promise<Issue | null> {
logger.warn(`findIssue() is not implemented`);
// TODO: Needs implementation (#9592)
logger.debug(`findIssue() is not implemented`);
return Promise.resolve(null);
}

/* istanbul ignore next */
export function ensureIssue(): Promise<EnsureIssueResult | null> {
logger.warn(`ensureIssue() is not implemented`);
// TODO: Needs implementation (#9592)
logger.debug(`ensureIssue() is not implemented`);
return Promise.resolve(null);
}

Expand Down

0 comments on commit aff8991

Please sign in to comment.