summaryrefslogtreecommitdiffstats
path: root/commands/commandeer.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/commandeer.go')
-rw-r--r--commands/commandeer.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/commands/commandeer.go b/commands/commandeer.go
index 0ae6aefce..d43d06b8a 100644
--- a/commands/commandeer.go
+++ b/commands/commandeer.go
@@ -18,6 +18,7 @@ import (
"errors"
"fmt"
"io"
+ "log"
"os"
"os/signal"
"path/filepath"
@@ -389,6 +390,9 @@ func (r *rootCommand) PreRun(cd, runner *simplecobra.Commandeer) error {
if r.quiet {
r.Out = io.Discard
}
+ // Used by mkcert (server).
+ log.SetOutput(r.Out)
+
r.Printf = func(format string, v ...interface{}) {
if !r.quiet {
fmt.Fprintf(r.Out, format, v...)