DOn't print debug init to log file when not logging to file

This commit is contained in:
Tulir Asokan 2019-04-27 15:44:01 +03:00
parent 08d99d776d
commit daf238fd71

View File

@ -50,9 +50,9 @@ func Initialize() {
if err != nil {
panic(err)
}
_, _ = fmt.Fprintf(writer, "======================= Debug init @ %s =======================\n", time.Now().Format("2006-01-02 15:04:05"))
}
_, _ = fmt.Fprintf(writer, "======================= Debug init @ %s =======================\n", time.Now().Format("2006-01-02 15:04:05"))
if DeadlockDetection {
deadlocks, err := os.OpenFile(filepath.Join(LogDirectory, "deadlock.log"), os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0640)
if err != nil {