updated version to v0.7.1

This commit is contained in:
Bora M. Alper 2018-12-30 19:39:41 +03:00
parent f7c2b2d29e
commit b375658fca
No known key found for this signature in database
GPG Key ID: 8F1A9504E1BD114D
2 changed files with 3 additions and 3 deletions

View File

@ -60,7 +60,7 @@ func main() {
return return
} }
zap.L().Info("magneticod v0.7.0-beta2 has been started.") zap.L().Info("magneticod v0.7.1 has been started.")
zap.L().Info("Copyright (C) 2018 Mert Bora ALPER <bora@boramalper.org>.") zap.L().Info("Copyright (C) 2018 Mert Bora ALPER <bora@boramalper.org>.")
zap.L().Info("Dedicated to Cemile Binay, in whose hands I thrived.") zap.L().Info("Dedicated to Cemile Binay, in whose hands I thrived.")
zap.S().Infof("Compiled on %s", compiledOn) zap.S().Infof("Compiled on %s", compiledOn)

View File

@ -60,13 +60,13 @@ func main() {
defer logger.Sync() defer logger.Sync()
zap.ReplaceGlobals(logger) zap.ReplaceGlobals(logger)
zap.L().Info("magneticow v0.7.0-beta1 has been started.") zap.L().Info("magneticow v0.7.1 has been started.")
zap.L().Info("Copyright (C) 2018 Mert Bora ALPER <bora@boramalper.org>.") zap.L().Info("Copyright (C) 2018 Mert Bora ALPER <bora@boramalper.org>.")
zap.L().Info("Dedicated to Cemile Binay, in whose hands I thrived.") zap.L().Info("Dedicated to Cemile Binay, in whose hands I thrived.")
zap.S().Infof("Compiled on %s", compiledOn) zap.S().Infof("Compiled on %s", compiledOn)
if err := parseFlags(); err != nil { if err := parseFlags(); err != nil {
zap.L().Error("Error while initializing", zap.Error(err)) zap.S().Errorf("error while parsing flags: %s", err.Error())
return return
} }