From 4d8f5c28900755be794877a4adf521c09817ad7b Mon Sep 17 00:00:00 2001 From: Casey Lee Date: Thu, 16 Nov 2017 11:13:55 -0800 Subject: [PATCH] fix #221 --- VERSION | 2 +- common/extension.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 524cb552..45a1b3f4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.1 +1.1.2 diff --git a/common/extension.go b/common/extension.go index e06b3e3d..2c8349db 100644 --- a/common/extension.go +++ b/common/extension.go @@ -307,12 +307,12 @@ func newTemplateArchiveExtension(u *url.URL, artifactManager ArtifactManager) (E // log info about the new extension if name, ok := extManifest["name"]; ok { if version, ok := extManifest["version"]; ok { - log.Infof("Loaded extension %s (version=%v)", name, version) + log.Noticef("Loaded extension %s (version=%v)", name, version) } else { - log.Infof("Loaded extension %s", name) + log.Noticef("Loaded extension %s", name) } } else { - log.Infof("Loaded extension %s", u) + log.Noticef("Loaded extension %s", u) } return ext, nil