Skip to content

Commit

Permalink
fix(deploy): fix header being incorrectly displayed to console log
Browse files Browse the repository at this point in the history
Deploying during prepare incorrectly displays the header to console, it should be part of individual
files
  • Loading branch information
sfopsbot committed Jan 8, 2024
1 parent 28c7642 commit a23e023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sfp-cli/src/impl/deploy/DeployImpl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export default class DeployImpl {
} else alwaysDeployMessage = undefined;

//Display header
SFPLogger.printHeaderLine('Installing Package',COLOR_HEADER,LoggerLevel.INFO);
SFPLogger.printHeaderLine('Installing Package',COLOR_HEADER,LoggerLevel.INFO,this.props.logger);
SFPLogger.log(COLOR_HEADER(`Name: ${COLOR_KEY_MESSAGE(pkg)}`), LoggerLevel.INFO, this.props.logger);
SFPLogger.log(`Type: ${COLOR_KEY_MESSAGE(sfpPackage.packageType)}`, LoggerLevel.INFO, this.props.logger);
SFPLogger.log(
Expand Down

0 comments on commit a23e023

Please sign in to comment.