Skip to content

Commit

Permalink
Merge branch 'main' into cmsis_build_root
Browse files Browse the repository at this point in the history
  • Loading branch information
soumeh01 authored Aug 3, 2023
2 parents 242f0d0 + 851a530 commit 27e510a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/builder/csolution/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ func (b CSolutionBuilder) getIdxFilePath() (string, error) {

func (b CSolutionBuilder) processContext(context string, progress string) (err error) {
infoMsg := progress + " Processing context: \"" + context + "\""
fmt.Println(strings.Repeat("=", len(infoMsg)+13))
sep := strings.Repeat("=", len(infoMsg)+13) + "\n"
_, _ = log.StandardLogger().Out.Write([]byte(sep))
log.Info(infoMsg)

// if --output is used, ignore provided --outdir and --intdir
Expand Down Expand Up @@ -311,7 +312,7 @@ func (b CSolutionBuilder) ListEnvironment() error {
return err
}
for _, config := range envConfigs {
fmt.Println(config)
_, _ = log.StandardLogger().Out.Write([]byte(config + "\n"))
}
return nil
}
Expand Down

0 comments on commit 27e510a

Please sign in to comment.