Trying a different logging format...

This commit is contained in:
Solderpunk 2019-11-22 21:51:47 +02:00
parent a67d1b113a
commit c13acf9c4b
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ type LogEntry struct {
func writeLogEntry(fp *os.File, entry LogEntry) {
var line string
line = "[" + entry.Time.Format(time.UnixDate)+ "]"
line = entry.Time.Format(time.RFC3339)
line += "\t" + strconv.Itoa(entry.Status)
line += "\t" + entry.RemoteAddr.String()
line += "\t" + entry.RequestURL