blob: 7b8eea65e633ce15557eaa217c483b602eb57464 [file] [log] [blame]
package action
import (
"github.com/Masterminds/glide/msg"
)
// Debug sets the debugging flags across components.
func Debug(on bool) {
msg.Default.IsDebugging = on
}
// Quiet sets the quiet flags across components.
func Quiet(on bool) {
msg.Default.Quiet = on
}
// NoColor sets the color flags.
func NoColor(on bool) {
msg.Default.NoColor = on
}