shared: FileSaver: Print message for OK_WASEMPTY

Este commit está contenido en:
Albert S. 2022-06-24 17:42:55 +02:00
padre 83ed935790
commit 614238edda
Se han modificado 1 ficheros con 4 adiciones y 0 borrados

Ver fichero

@ -87,6 +87,10 @@ int FileSaver::processFiles(const QVector<QString> paths, std::function<SaveFile
{
Logger::info() << "Saved" << path << Qt::endl;
}
else if(result == OK_WASEMPTY)
{
Logger::info() << "Saved (but content was empty)" << path << Qt::endl;
}
}
}
});