From 92625d852a1e2a4e188bc285c2341f4c482c0469 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 18 Dec 2016 04:00:04 -0500 Subject: gofmt --- sd_daemon/log.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sd_daemon/log.go') diff --git a/sd_daemon/log.go b/sd_daemon/log.go index 76a735f..df82d4b 100644 --- a/sd_daemon/log.go +++ b/sd_daemon/log.go @@ -17,12 +17,12 @@ package sd_daemon import ( + "fmt" "io" + "log/syslog" "os" "strings" "sync" - "fmt" - "log/syslog" ) // Logger writes ""-prefixed lines to an io.Writer, where N is a @@ -33,7 +33,7 @@ import ( // constant "Log", which uses os.Stderr as the writer. It is // implemented as a struct rather than a set of functions so that it // can be passed around as an implementation of an interface. -type Logger struct{ +type Logger struct { mu sync.Mutex out io.Writer } -- cgit v1.2.3-54-g00ecf