Skip to content

Commit

Permalink
Merge pull request #222 from stelligent/hotfix-1.1.2
Browse files Browse the repository at this point in the history
fix #221
  • Loading branch information
cplee committed Nov 16, 2017
2 parents e0ac1ac + 4d8f5c2 commit e511423
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.2
6 changes: 3 additions & 3 deletions common/extension.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e511423

Please sign in to comment.