other logging levels

This commit is contained in:
piotr
2021-09-28 03:15:36 +02:00
parent 8c0d158e3d
commit 26cd4fb0cf
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -156,7 +156,7 @@ func main() {
s := <-signalChan s := <-signalChan
switch s { switch s {
case syscall.SIGTERM: case syscall.SIGTERM:
log.Debug("SIGTERM received, bye bye") log.Info("SIGTERM received, bye bye")
gtk.MainQuit() gtk.MainQuit()
case syscall.SIGUSR1: case syscall.SIGUSR1:
if *resident { if *resident {
@@ -165,7 +165,7 @@ func main() {
log.Debug("SIGUSR1 received, showing the window") log.Debug("SIGUSR1 received, showing the window")
showWindowTrigger = true showWindowTrigger = true
} else { } else {
log.Debug("SIGUSR1 received, and I'm not resident, bye bye") log.Info("SIGUSR1 received, and I'm not resident, bye bye")
gtk.MainQuit() gtk.MainQuit()
} }
default: default: