1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 18:25:58 +01:00

Remove left over debugging message.

This commit is contained in:
Juliusz Chroboczek 2020-12-01 18:24:45 +01:00
parent e68882fff0
commit dc3256ca19

View file

@ -446,7 +446,6 @@ func discardObsoleteHistory(h []ChatHistoryEntry, seconds int) []ChatHistoryEntr
i := 0
for i < len(h) {
log.Println(h[i].Time, FromJSTime(h[i].Time), now.Sub(FromJSTime(h[i].Time)))
if now.Sub(FromJSTime(h[i].Time)) <= d {
break
}