浏览代码

Kernel: Remove spammy logging about absolute_path() on non-custodies

Andreas Kling 5 年之前
父节点
当前提交
33e6cb8b80
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      Kernel/FileSystem/FileDescription.cpp

+ 0 - 1
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);
 }