web_service: Migrate logging macros

Follow-up of #3533

Replace prefix of all logging macros from LOG to NGLOG
This commit is contained in:
Daniel Lim Wee Soong
2018-03-25 15:35:06 +08:00
parent 9283053701
commit c82cd30f62
2 changed files with 23 additions and 23 deletions

View File

@ -50,7 +50,7 @@ void from_json(const nlohmann::json& json, Room& room) {
try {
room.members = json.at("players").get<std::vector<Room::Member>>();
} catch (const nlohmann::detail::out_of_range& e) {
LOG_DEBUG(Network, "Out of range %s", e.what());
NGLOG_DEBUG(Network, "Out of range {}", e.what());
}
}