From 33e6cb8b802faa4de11d0ffade5905e4dd8ae3ee Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 8 Sep 2019 09:37:28 +0200 Subject: [PATCH] Kernel: Remove spammy logging about absolute_path() on non-custodies --- Kernel/FileSystem/FileDescription.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/FileSystem/FileDescription.cpp b/Kernel/FileSystem/FileDescription.cpp index 61308e9c7e..45a9c1fc94 100644 --- a/Kernel/FileSystem/FileDescription.cpp +++ b/Kernel/FileSystem/FileDescription.cpp @@ -219,7 +219,6 @@ String FileDescription::absolute_path() const { if (m_custody) return m_custody->absolute_path(); - dbgprintf("FileDescription::absolute_path() for FD without custody, File type: %s\n", m_file->class_name()); return m_file->absolute_path(*this); }