log: replace all NGLOG with LOG
This commit is contained in:
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user