]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/cypherpunks.ru/nncp/log.go
Raise copyright years
[nncp.git] / src / cypherpunks.ru / nncp / log.go
index f37d949b29acc144f1852f86b26730d0e344db07..55d8844a8edad89ddff96d76810206c7d4ba245b 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2017 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2018 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -112,6 +112,9 @@ func (ctx *Ctx) LogP(who string, sds SDS, msg string) {
 
 func (ctx *Ctx) LogE(who string, sds SDS, msg string) {
        msg = msgFmt(LogLevel("E"), who, sds, msg)
+       if len(msg) > 2048 {
+               msg = msg[:2048]
+       }
        fmt.Fprintln(os.Stderr, ctx.Humanize(msg))
        ctx.Log(msg)
 }