From d083ce6beaa5268848fe61f1b9a81ad8914f0bd2 Mon Sep 17 00:00:00 2001 From: Ben Morrison Date: Tue, 21 May 2019 16:50:54 -0400 Subject: rename closeLog channel --- init.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'init.go') diff --git a/init.go b/init.go index 97a998c..8c96e72 100644 --- a/init.go +++ b/init.go @@ -27,7 +27,7 @@ var ( var confObj = &configuration{} // signals to close the log file -var closelog = make(chan bool, 1) +var closeLog = make(chan bool, 1) // used to transmit database pointer after // initialization @@ -149,7 +149,7 @@ func initLogging() { // reloaded. go func(logfile *os.File) { - <-closelog + <-closeLog log.Printf("Closing log file ...\n") err = logfile.Close() @@ -168,7 +168,7 @@ func rebindConfig() { // signal to close the log file then wait confObj.mu.RLock() if !confObj.stdoutLogging { - closelog <- true + closeLog <- true } confObj.mu.RUnlock() @@ -250,12 +250,12 @@ func watchForInterrupt() { if !confObj.stdoutLogging { // signal to close the log file - closelog <- true + closeLog <- true } confObj.mu.RUnlock() close(dbChan) - close(closelog) + close(closeLog) // Let everything catch up time.Sleep(100 * time.Millisecond) -- cgit 1.4.1-2-gfad0