Browse Source

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

Andreas Kling 5 years ago
parent
commit
33e6cb8b80
1 changed files with 0 additions and 1 deletions
  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)
     if (m_custody)
         return m_custody->absolute_path();
         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);
     return m_file->absolute_path(*this);
 }
 }