Emit the server software and version to the log on startup

pull/168/head
Daniel Watkins 5 years ago
parent 8557119451
commit 7a53af355e
No known key found for this signature in database
GPG Key ID: EEE68776EDB13EA0
  1. 7
      app.go
  2. 1
      cmd/writefreely/main.go

@ -486,9 +486,14 @@ func ConnectToDatabase(app *App) error {
return nil
}
// FormatVersion constructs the version string for the application
func FormatVersion() string {
return serverSoftware + " " + softwareVer
}
// OutputVersion prints out the version of the application.
func OutputVersion() {
fmt.Println(serverSoftware + " " + softwareVer)
fmt.Println(FormatVersion())
}
// NewApp creates a new app instance.

@ -113,6 +113,7 @@ func main() {
// Initialize the application
var err error
log.Info("Starting %s...", writefreely.FormatVersion())
app, err = writefreely.Initialize(app, *debugPtr)
if err != nil {
log.Error("%s", err)

Loading…
Cancel
Save