Skip to content

Commit c772872

Browse files
Update workflow
1 parent 03c324f commit c772872

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

azurecontainerapps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -572,14 +572,14 @@ export class azurecontainerapps {
572572

573573
// Handle TargetLabel setup when activeRevisionsMode is Labels
574574
if (!this.util.isNullOrEmpty(this.targetLabel)) {
575-
this.toolHelper.writeInfo('Target label is provided. Setting up command line arguments for revisions mode "Labels".');
575+
this.toolHelper.writeDebug('Target label is provided. Setting up command line arguments for revisions mode "Labels".');
576576

577577
// If the target label is provided, add it to the command line arguments
578578
this.commandLineArgs.push(`--revisions-mode Labels`);
579-
this.toolHelper.writeInfo('Added "--revisions-mode Labels" to command line arguments.');
579+
this.toolHelper.writeDebug('Added "--revisions-mode Labels" to command line arguments.');
580580

581581
this.commandLineArgs.push(`--target-label ${this.targetLabel}`);
582-
this.toolHelper.writeInfo(`Added "--target-label ${this.targetLabel}" to command line arguments.`);
582+
this.toolHelper.writeDebug(`Added "--target-label ${this.targetLabel}" to command line arguments.`);
583583
}
584584

585585
// Determine default values only for the 'create' scenario to avoid overriding existing values for the 'update' scenario

dist/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -662,12 +662,12 @@ var azurecontainerapps = /** @class */ (function () {
662662
}
663663
// Handle TargetLabel setup when activeRevisionsMode is Labels
664664
if (!this.util.isNullOrEmpty(this.targetLabel)) {
665-
this.toolHelper.writeInfo('Target label is provided. Setting up command line arguments for revisions mode "Labels".');
665+
this.toolHelper.writeDebug('Target label is provided. Setting up command line arguments for revisions mode "Labels".');
666666
// If the target label is provided, add it to the command line arguments
667667
this.commandLineArgs.push("--revisions-mode Labels");
668-
this.toolHelper.writeInfo('Added "--revisions-mode Labels" to command line arguments.');
668+
this.toolHelper.writeDebug('Added "--revisions-mode Labels" to command line arguments.');
669669
this.commandLineArgs.push("--target-label ".concat(this.targetLabel));
670-
this.toolHelper.writeInfo("Added \"--target-label ".concat(this.targetLabel, "\" to command line arguments."));
670+
this.toolHelper.writeDebug("Added \"--target-label ".concat(this.targetLabel, "\" to command line arguments."));
671671
}
672672
// Determine default values only for the 'create' scenario to avoid overriding existing values for the 'update' scenario
673673
if (!this.containerAppExists) {

0 commit comments

Comments
 (0)