mirror of
https://github.com/nonoo/kappanhang.git
synced 2026-01-25 18:10:25 +01:00
Format app start log line
This commit is contained in:
parent
d404764257
commit
d47f6e4e29
5
main.go
5
main.go
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue