From 79f276d02df2a55bba1a254a6956bb9f39476023 Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Thu, 8 Sep 2016 11:41:53 -0400 Subject: [PATCH] Log active tags in nodeup --- upup/pkg/fi/nodeup/command.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/upup/pkg/fi/nodeup/command.go b/upup/pkg/fi/nodeup/command.go index f84e757ad5..ff088f415e 100644 --- a/upup/pkg/fi/nodeup/command.go +++ b/upup/pkg/fi/nodeup/command.go @@ -127,6 +127,9 @@ func (c *NodeUpCommand) Run(out io.Writer) error { tags[tag] = struct{}{} } + glog.Infof("Config tags: %v", c.config.Tags) + glog.Infof("OS tags: %v", osTags) + loader := NewLoader(c.config, c.cluster, assets, tags) tf, err := newTemplateFunctions(c.config, c.cluster, tags)