Skip to content

Commit

Permalink
Consistent presentation for verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
jonesiscoding committed Apr 10, 2023
1 parent e6458f0 commit 8ba4d22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/available-cli/Status.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ class UserStatus: CustomStringConvertible {
if(isVerbose) {
print(self.label.style(ANSIAttr.cyan).padding(toLength: 76, withPad: ".", startingAt: 0), terminator: " ")
if(self.status) {
print(self.value.style(.red))
print("[\(self.value.style(.red))]")
} else {
print(self.value.style(.green))
print("[\(self.value.style(.green))]")
}
} else {
if(!isQuiet && self.status) {
Expand Down

0 comments on commit 8ba4d22

Please sign in to comment.