summaryrefslogtreecommitdiff
path: root/pkg/hooks/read.go
diff options
context:
space:
mode:
authorW. Trevor King <wking@tremily.us>2018-06-03 12:34:42 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-06-04 13:01:56 +0000
commit41a3f48f6d78b791181fb52c0cd9ac3fa94424f7 (patch)
tree762bb53c1624bf9ef089276294bff8a335dd99e3 /pkg/hooks/read.go
parentd5bedf42cfaddd01eba88e267bc0fb8dbc1039ad (diff)
downloadpodman-41a3f48f6d78b791181fb52c0cd9ac3fa94424f7.tar.gz
podman-41a3f48f6d78b791181fb52c0cd9ac3fa94424f7.tar.bz2
podman-41a3f48f6d78b791181fb52c0cd9ac3fa94424f7.zip
hooks: Add debug logging for initial hook loading
We've had logrus logging in the monitor code since it landed in 68eb128f (pkg/hooks: Version the hook structure and add 1.0.0 hooks, 2018-04-27, #686). This commit adds similar logging to the initial hook.New() and Manager.Hooks() calls to make it easier to see if those are working as expected. Signed-off-by: W. Trevor King <wking@tremily.us> Closes: #887 Approved by: rhatdan
Diffstat (limited to 'pkg/hooks/read.go')
-rw-r--r--pkg/hooks/read.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/hooks/read.go b/pkg/hooks/read.go
index a8c9a7adc..20431bdf1 100644
--- a/pkg/hooks/read.go
+++ b/pkg/hooks/read.go
@@ -11,6 +11,7 @@ import (
"github.com/pkg/errors"
current "github.com/projectatomic/libpod/pkg/hooks/1.0.0"
+ "github.com/sirupsen/logrus"
)
type reader func(content []byte) (*current.Hook, error)
@@ -61,6 +62,7 @@ func read(content []byte) (hook *current.Hook, err error) {
// ReadDir reads hook JSON files from a directory into the given map,
// clobbering any previous entries with the same filenames.
func ReadDir(path string, extensionStages []string, hooks map[string]*current.Hook) error {
+ logrus.Debugf("reading hooks from %s", path)
files, err := ioutil.ReadDir(path)
if err != nil {
return err
@@ -81,6 +83,7 @@ func ReadDir(path string, extensionStages []string, hooks map[string]*current.Ho
return err
}
hooks[file.Name()] = hook
+ logrus.Debugf("added hook %s", filePath)
}
return nil
}