Fix channel version format string

This commit is contained in:
Justin Santa Barbara 2017-04-10 12:23:34 -04:00
parent 460c0be944
commit 12e61b1378
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ func (c *ChannelVersion) replaces(existing *ChannelVersion) bool {
if c.Id == existing.Id {
return false
} else {
glog.V(4).Infof("Channels had same version %q but different ids (%q vs %q); will replace", c.Version, c.Id, existing.Id)
glog.V(4).Infof("Channels had same version %q but different ids (%q vs %q); will replace", *c.Version, c.Id, existing.Id)
}
}
}