Merge pull request #168 from jfrazelle/add-version-to-server-and-signer

add version to signer and server logs for debugging and issues
This commit is contained in:
Diogo Mónica 2015-07-31 15:45:05 -07:00
commit 864c3f05c9
2 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,7 @@ import (
"github.com/docker/notary/server"
"github.com/docker/notary/server/storage"
"github.com/docker/notary/signer"
"github.com/docker/notary/version"
"github.com/spf13/viper"
)
@ -49,6 +50,9 @@ func main() {
go debugServer(DebugAddress)
}
// when the server starts print the version for debugging and issue logs later
logrus.Infof("Version: %s, Git commit: %s", version.NotaryVersion, version.GitCommit)
ctx := context.Background()
filename := filepath.Base(configFile)

View File

@ -21,6 +21,7 @@ import (
"github.com/docker/notary/cryptoservice"
"github.com/docker/notary/signer"
"github.com/docker/notary/signer/api"
"github.com/docker/notary/version"
"github.com/endophage/gotuf/data"
_ "github.com/go-sql-driver/mysql"
"github.com/miekg/pkcs11"
@ -72,6 +73,9 @@ func main() {
go debugServer(debugAddr)
}
// when the signer starts print the version for debugging and issue logs later
logrus.Infof("Version: %s, Git commit: %s", version.NotaryVersion, version.GitCommit)
filename := filepath.Base(configFile)
ext := filepath.Ext(configFile)
configPath := filepath.Dir(configFile)