diff --git a/dynolog/src/rpc/SimpleJsonServerInl.h b/dynolog/src/rpc/SimpleJsonServerInl.h index 4b5fed5d..efb3e86c 100644 --- a/dynolog/src/rpc/SimpleJsonServerInl.h +++ b/dynolog/src/rpc/SimpleJsonServerInl.h @@ -38,7 +38,7 @@ nlohmann::json toJson(const std::string& message) { } try { result = json::parse(message); - } catch (json::parse_error& ex) { + } catch (json::parse_error&) { LOG(ERROR) << "Error parsing message = " << message; return result; }