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>
This commit is contained in:
Matthew Heon 2020-06-17 17:23:54 -04:00
parent 7b00e49f65
commit 43ead88e81
1 changed files with 0 additions and 4 deletions

View File

@ -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())
}