aboutsummaryrefslogtreecommitdiff
path: root/cmd/podman/system
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2020-06-17 17:23:54 -0400
committerMatthew Heon <mheon@redhat.com>2020-06-17 17:39:49 -0400
commit43ead88e818ca6f455fbaa1de7b7cf9c91c4c05c (patch)
treefe1af7e9857d38899c6c5af14a053441465b8659 /cmd/podman/system
parent7b00e49f657305f233e4e29613821305bf4d2962 (diff)
downloadpodman-43ead88e818ca6f455fbaa1de7b7cf9c91c4c05c.tar.gz
podman-43ead88e818ca6f455fbaa1de7b7cf9c91c4c05c.tar.bz2
podman-43ead88e818ca6f455fbaa1de7b7cf9c91c4c05c.zip
Podman system service is no longer experimental
As such, we can remove the warnings logs that previously printed every time it was run. Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'cmd/podman/system')
-rw-r--r--cmd/podman/system/service.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/podman/system/service.go b/cmd/podman/system/service.go
index ecd17c251..5301b855e 100644
--- a/cmd/podman/system/service.go
+++ b/cmd/podman/system/service.go
@@ -3,7 +3,6 @@
package system
import (
- "fmt"
"net/url"
"os"
"path/filepath"
@@ -97,9 +96,6 @@ func service(cmd *cobra.Command, args []string) error {
return registry.ContainerEngine().VarlinkService(registry.GetContext(), opts)
}
- logrus.Warn("This function is EXPERIMENTAL")
- fmt.Fprintf(os.Stderr, "This function is EXPERIMENTAL.\n")
-
return restService(opts, cmd.Flags(), registry.PodmanConfig())
}