Skip to content

Commit

Permalink
don't log when modified files remain the same type (normal/special/ca…
Browse files Browse the repository at this point in the history
…rousel)
  • Loading branch information
ZXGuesser committed Nov 24, 2018
1 parent 7e54605 commit 64b25af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions filemonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void FileMonitor::run()
else
{
// no change
std::cerr << "[FileMonitor::run] page remains special " << std::hex << q->GetPageNumber() << std::endl;
//std::cerr << "[FileMonitor::run] page remains special " << std::hex << q->GetPageNumber() << std::endl;
}
}
else if (q->GetCarouselFlag())
Expand Down Expand Up @@ -174,7 +174,7 @@ void FileMonitor::run()
else
{
// no change
std::cerr << "[FileMonitor::run] page remains a carousel " << std::hex << q->GetPageNumber() << std::endl;
//std::cerr << "[FileMonitor::run] page remains a carousel " << std::hex << q->GetPageNumber() << std::endl;
}
}
else
Expand Down Expand Up @@ -204,7 +204,7 @@ void FileMonitor::run()
else
{
// no change
std::cerr << "[FileMonitor::run] page remains normal " << std::hex << q->GetPageNumber() << std::endl;
//std::cerr << "[FileMonitor::run] page remains normal " << std::hex << q->GetPageNumber() << std::endl;
}
}

Expand Down

0 comments on commit 64b25af

Please sign in to comment.