summaryrefslogtreecommitdiff
path: root/LibGUI
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-03-18 15:36:16 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-03-18 15:36:16 +0100
commita319641fc45ae44d23fc0058b70f172d8bb8f693 (patch)
treeef2562e2bfca7f0cdbd677a461b7d75f57433eb7 /LibGUI
parent9ad076178a4bb13436e2edf90e62a26fb2cf32ea (diff)
downloadserenity-a319641fc45ae44d23fc0058b70f172d8bb8f693.zip
GIODevice: Remove debug spam.
Diffstat (limited to 'LibGUI')
-rw-r--r--LibGUI/GIODevice.cpp1
1 files changed, 0 insertions, 1 deletions
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;
}
}