Skip to content

Commit

Permalink
remove redundant newline in log
Browse files Browse the repository at this point in the history
  • Loading branch information
jyyi1 committed Oct 19, 2023
1 parent 50dddd8 commit a9031a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/examples/outline-cli/app_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ func (app App) Run() error {
sigc := make(chan os.Signal, 1)
signal.Notify(sigc, os.Interrupt, unix.SIGTERM, unix.SIGHUP)
s := <-sigc
log.Printf("\nreceived %v, terminating...\n", s)
log.Printf("received %v, terminating...\n", s)
return nil
}

0 comments on commit a9031a7

Please sign in to comment.