diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-05-21 16:50:54 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-05-21 16:50:54 -0400 |
commit | d083ce6beaa5268848fe61f1b9a81ad8914f0bd2 (patch) | |
tree | 7a86721c83ad418bb8a382875ebddb75ebb1fd64 /init.go | |
parent | ece8a01fb1ec9417c1fc433a665024cc52dbf183 (diff) | |
download | getwtxt-d083ce6beaa5268848fe61f1b9a81ad8914f0bd2.tar.gz |
rename closeLog channel
Diffstat (limited to 'init.go')
-rw-r--r-- | init.go | 10 |
1 files changed, 5 insertions, 5 deletions
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) |