From 9a84e504936cbc2498d36620ea7bde53287844ba Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Wed, 9 Dec 2020 17:05:16 -0500 Subject: [PATCH] Minor linting --- internal/cmd/base/servers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cmd/base/servers.go b/internal/cmd/base/servers.go index 4b8d16ded7..a0f3edee8c 100644 --- a/internal/cmd/base/servers.go +++ b/internal/cmd/base/servers.go @@ -232,7 +232,7 @@ func (b *Server) PrintInfo(ui cli.Ui) { } } sort.Strings(b.InfoKeys) - ui.Output(fmt.Sprintf("==> Boundary server configuration:\n")) + ui.Output("==> Boundary server configuration:\n") for _, k := range b.InfoKeys { ui.Output(fmt.Sprintf( "%s%s: %s", @@ -244,7 +244,7 @@ func (b *Server) PrintInfo(ui cli.Ui) { // Output the header that the server has started if !b.CombineLogs { - ui.Output(fmt.Sprintf("==> Boundary server started! Log data will stream in below:\n")) + ui.Output("==> Boundary server started! Log data will stream in below:\n") } }