Parcourir la source

Timestamp the panic log

Jakob Borg il y a 11 ans
Parent
commit
5537d53f9a
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      cmd/syncthing/monitor.go

+ 1 - 0
cmd/syncthing/monitor.go

@@ -126,6 +126,7 @@ func copyStderr(stderr io.ReadCloser) {
 				l.Warnf("Panic detected, writing to \"%s\"", panicFd.Name())
 				l.Warnln("Please create an issue at https://github.com/syncting/syncthing/issues/ with the panic log attached")
 
+				panicFd.WriteString("Panic at " + time.Now().Format(time.RFC1123) + "\n")
 				stdoutMut.Lock()
 				for _, line := range stdoutFirstLines {
 					panicFd.WriteString(line)