1
0

Fix remove if not found in Sia

This commit is contained in:
Scott Graves
2017-04-06 14:32:28 -05:00
parent 8ebc8694b1
commit 14451b8a43
3 changed files with 5 additions and 3 deletions

View File

@@ -260,7 +260,9 @@ private:
public:
virtual SString GetSingleLineMessage() const override
{
return L"FailedToRemoveFileFromSia|SP|" + _siaPath + L"|FP|" + _filePath;
return L"FailedToRemoveFileFromSia|SP|" + _siaPath +
L"|FP|" + _filePath +
L"|CERR|" + _curlError.GetReason();
}
virtual std::shared_ptr<CEvent> Clone() const override