1
0
Derivar 0

shared: FileSaver: Print message for OK_WASEMPTY

Este cometimento está contido em:
Albert S. 2022-06-24 17:42:55 +02:00
ascendente 83ed935790
cometimento 614238edda
1 ficheiros modificados com 4 adições e 0 eliminações

Ver ficheiro

@ -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;
}
}
}
});