summaryrefslogtreecommitdiff
path: root/pkg/api/server
diff options
context:
space:
mode:
authorValentin Rothberg <rothberg@redhat.com>2020-01-16 11:59:39 +0100
committerValentin Rothberg <rothberg@redhat.com>2020-01-16 14:05:39 +0100
commitc3d90179dcd550d2ad6df7a7ea07b143a3f3beab (patch)
tree7a0499cfd20175a42b58371324c2638c1a40d6d6 /pkg/api/server
parent279bf40ab1d8427acda76a4e99fa7c3ba7b19ba6 (diff)
downloadpodman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.tar.gz
podman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.tar.bz2
podman-c3d90179dcd550d2ad6df7a7ea07b143a3f3beab.zip
make binaries: include service
Include the service into make binaries such that we're it's being build in the CI. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/api/server')
-rw-r--r--pkg/api/server/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/server/server.go b/pkg/api/server/server.go
index b27b6360d..2bda5ad01 100644
--- a/pkg/api/server/server.go
+++ b/pkg/api/server/server.go
@@ -168,7 +168,7 @@ func (s *APIServer) Serve() error {
case err := <-errChan:
return err
case sig := <-sigChan:
- logrus.Info("APIServer terminated by signal %v", sig)
+ logrus.Infof("APIServer terminated by signal %v", sig)
}
return nil