From a319641fc45ae44d23fc0058b70f172d8bb8f693 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 18 Mar 2019 15:36:16 +0100 Subject: [PATCH] GIODevice: Remove debug spam. --- LibGUI/GIODevice.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/LibGUI/GIODevice.cpp b/LibGUI/GIODevice.cpp index 7be5bcd09f..988278c411 100644 --- a/LibGUI/GIODevice.cpp +++ b/LibGUI/GIODevice.cpp @@ -131,7 +131,6 @@ ByteBuffer GIODevice::read_line(int max_size) m_buffered_data = move(new_buffered_data); line[line_index] = '\0'; line.trim(line_index + 1); - dbgprintf("GIODevice::read_line: '%s'\n", line.pointer()); return line; } }