From 568d71e5ec3895c6ac80b3c302519b79a3b2195a Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Mon, 22 Jul 2024 20:10:02 +0200 Subject: [PATCH] chore: temporarily remove logging gsub --- lua/neotest-golang/logging.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/neotest-golang/logging.lua b/lua/neotest-golang/logging.lua index 3cd8fdc6..13802e1d 100644 --- a/lua/neotest-golang/logging.lua +++ b/lua/neotest-golang/logging.lua @@ -7,9 +7,10 @@ local prefix = "[neotest-golang] " local function clean_output(str) -- Replace escaped newlines and tabs with spaces - str = str:gsub("[\n\t]", " ") + -- FIXME: commented out temporarily + -- str = str:gsub("[\n\t]", " ") -- Collapse multiple spaces into one - str = str:gsub("%s+", " ") + -- str = str:gsub("%s+", " ") return str end