Missing const and log.

This commit is contained in:
Alex Zolotarev 2016-01-09 11:46:23 +03:00 committed by Sergey Yershov
parent 7344df35c3
commit 68cce57100
2 changed files with 3 additions and 3 deletions

View file

@ -12,7 +12,7 @@
namespace osm
{
ServerApi06::ServerApi06(OsmOAuth & auth)
ServerApi06::ServerApi06(OsmOAuth const & auth)
: m_auth(auth)
{
}
@ -67,7 +67,7 @@ bool ServerApi06::ModifyNode(string const & nodeXml, uint64_t nodeId) const
if (response.first == OsmOAuth::ResponseCode::OK)
return true;
LOG(LWARNING, ("ModifyNode request has failed:", response.first));
LOG(LWARNING, ("ModifyNode request has failed:", response.first, response.second));
return false;
}

View file

@ -26,7 +26,7 @@ public:
ECanNotBeDeleted
};
ServerApi06(OsmOAuth & auth);
ServerApi06(OsmOAuth const & auth);
/// This function can be used to check if user did not confirm email validation link after registration.
/// @returns OK if user exists, NotFound if it is not, and ServerError if there is no connection.
OsmOAuth::ResponseCode TestUserExists(string const & userName);