Minor debug log.

This commit is contained in:
Alex Zolotarev 2016-01-25 12:55:58 +03:00 committed by Sergey Yershov
parent 705d1dff45
commit c6885ea26c

View file

@ -77,8 +77,11 @@ ServerApi06::DeleteResult ServerApi06::DeleteNode(string const & nodeXml, uint64
if (response.first == OsmOAuth::ResponseCode::OK)
return DeleteResult::ESuccessfullyDeleted;
else if (static_cast<int>(response.first) >= 400)
{
LOG(LWARNING, ("Server can't delete node, replied:", response.second));
// Tons of reasons, see http://wiki.openstreetmap.org/wiki/API_v0.6#Error_codes_16
return DeleteResult::ECanNotBeDeleted;
}
LOG(LWARNING, ("DeleteNode request has failed:", response.first));
return DeleteResult::EFailed;