log: replace all NGLOG with LOG

This commit is contained in:
wwylele
2018-06-29 14:18:07 +03:00
parent fde415968e
commit 7c5a76e58b
152 changed files with 1541 additions and 1541 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) {
NGLOG_DEBUG(Network, "Out of range {}", e.what());
LOG_DEBUG(Network, "Out of range {}", e.what());
}
}