Skip to content

Commit

Permalink
No separation lines for clean logs
Browse files Browse the repository at this point in the history
  • Loading branch information
soumeh01 committed Sep 4, 2024
1 parent 7823e23 commit 378fac5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/builder/csolution/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,10 @@ func (b CSolutionBuilder) cleanContexts(selectedContexts []string, projBuilders
for index := range projBuilders {
progress := fmt.Sprintf("(%s/%d)", strconv.Itoa(index+1), len(projBuilders))
cleanMsg := progress + " Cleaning context: \"" + selectedContexts[index] + "\""
seplen = len(cleanMsg)
utils.PrintSeparator("-", seplen)
if seplen == 0 {
seplen = len(cleanMsg)
utils.PrintSeparator("-", seplen)
}
utils.LogStdMsg(cleanMsg)

b.setBuilderOptions(&projBuilders[index], true)
Expand Down

0 comments on commit 378fac5

Please sign in to comment.