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
parent fb275c9442
commit 33e6cb8b80

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