Skip to content

Commit

Permalink
Suppress misleading warning in log
Browse files Browse the repository at this point in the history
  • Loading branch information
shundhammer committed Oct 9, 2018
1 parent 3df45d6 commit 5a317fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/DirTreeModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,8 @@ void DirTreeModel::readJobFinished( DirInfo * dir )

if ( anyAncestorBusy( dir ) )
{
logDebug() << "Ancestor busy - ignoring readJobFinished for " << dir << endl;
if ( dir && ! dir->isMountPoint() )
logDebug() << "Ancestor busy - ignoring readJobFinished for " << dir << endl;
}
else
{
Expand Down

0 comments on commit 5a317fc

Please sign in to comment.