1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-05-13 04:26:03 +02:00

Trying a different logging format...

This commit is contained in:
Solderpunk 2019-11-22 21:51:47 +02:00
parent a67d1b113a
commit c13acf9c4b

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