Format app start log line

This commit is contained in:
Nonoo 2020-10-25 21:25:15 +01:00
parent d404764257
commit d47f6e4e29

View file

@ -1,6 +1,7 @@
package main
import (
"fmt"
"os"
"os/signal"
"strings"
@ -72,9 +73,9 @@ func reportError(err error) {
}
func main() {
log.Init()
log.Print("kappanhang by Norbert Varga HA2NON and Akos Marton ES1AKOS https://github.com/nonoo/kappanhang")
fmt.Println("kappanhang by Norbert Varga HA2NON and Akos Marton ES1AKOS https://github.com/nonoo/kappanhang")
parseArgs()
log.Init()
osSignal := make(chan os.Signal, 1)
signal.Notify(osSignal, os.Interrupt, syscall.SIGTERM)