Add comment for permission and fix wrong format variable

Signed-off-by: Derek McGowan <derek@mcgstyle.net> (github: dmcgowan)
This commit is contained in:
Derek McGowan 2014-10-02 17:41:57 -07:00
parent b7f7b0a2c9
commit c47aa21c35

View file

@ -124,6 +124,6 @@ func (e Endpoint) Ping() (RegistryInfo, error) {
// there is a header set, and it is not "true" or "1", so assume fails
info.Standalone = false
}
log.Debugf("RegistryInfo.Standalone: %q", info.Standalone)
log.Debugf("RegistryInfo.Standalone: %t", info.Standalone)
return info, nil
}