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

This commit is contained in:
Andreas Kling 2019-09-08 09:37:28 +02:00
commit 33e6cb8b80
Notes: sideshowbarker 2024-07-19 12:13:06 +09:00

View file

@ -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);
}