From 68cce571003376ad67bc60d78f885e64c338a3bd Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Sat, 9 Jan 2016 11:46:23 +0300 Subject: [PATCH] Missing const and log. --- editor/server_api.cpp | 4 ++-- editor/server_api.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/server_api.cpp b/editor/server_api.cpp index 47977a8c80..891156e5fc 100644 --- a/editor/server_api.cpp +++ b/editor/server_api.cpp @@ -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; } diff --git a/editor/server_api.hpp b/editor/server_api.hpp index fb0149dbf1..a569fe61c5 100644 --- a/editor/server_api.hpp +++ b/editor/server_api.hpp @@ -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);