shared: FileScanWorker: Catch LooqsGeneralException for better error msgs
This commit is contained in:
parent
44b9986166
commit
a3cfb7ade1
@ -21,11 +21,18 @@ void FileScanWorker::run()
|
|||||||
{
|
{
|
||||||
sfr = saver.addFile(path);
|
sfr = saver.addFile(path);
|
||||||
}
|
}
|
||||||
|
catch(LooqsGeneralException &e)
|
||||||
|
{
|
||||||
|
Logger::error() << e.message << Qt::endl;
|
||||||
|
sfr = PROCESSFAIL;
|
||||||
|
}
|
||||||
|
|
||||||
catch(std::exception &e)
|
catch(std::exception &e)
|
||||||
{
|
{
|
||||||
Logger::error() << e.what();
|
Logger::error() << e.what() << Qt::endl;
|
||||||
sfr = PROCESSFAIL; // well...
|
sfr = PROCESSFAIL; // well...
|
||||||
}
|
}
|
||||||
|
|
||||||
emit result({path, sfr});
|
emit result({path, sfr});
|
||||||
if(stopToken->load(std::memory_order_relaxed)) // TODO: relaxed should suffice here, but recheck
|
if(stopToken->load(std::memory_order_relaxed)) // TODO: relaxed should suffice here, but recheck
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user