PartDesign: [skip ci] do not write error but log message when reading thread definitions of hole feature

This commit is contained in:
wmayer
2020-11-05 15:40:49 +01:00
parent 70eb263eb3
commit c8e46ee555

View File

@@ -1424,10 +1424,10 @@ void Hole::readCutDefinitions()
::App::Application::getUserAppDataDir() + subpath,
};
std::cerr << "Looking for thread definitions in: ";
std::clog << "Looking for thread definitions in: ";
for (auto &i : dirs)
std::cerr << i << " ";
std::cerr << "\n";
std::clog << i << " ";
std::clog << "\n";
for (auto &dir : dirs) {
std::vector<::Base::FileInfo> files { ::Base::FileInfo(dir).getDirectoryContent() };
for (const auto &f : files) {