From f84f55f3b2a8b6d248e5201e182ea3af67518e89 Mon Sep 17 00:00:00 2001 From: Ompragash Viswanathan Date: Tue, 7 Oct 2025 19:28:51 +0530 Subject: [PATCH] Fix --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 20c8037..be28f9c 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ func main() { type formatter struct{} func (*formatter) Format(entry *logrus.Entry) ([]byte, error) { - return []byte(entry.Message), nil + return []byte(entry.Message + "\n"), nil } // text formatter that writes logs with level information