remove some noisy log lines & fix a query error

This commit is contained in:
Grant Limberg 2021-06-04 11:06:54 -07:00
parent c78792a705
commit 0702e581a1
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A
4 changed files with 2 additions and 8 deletions

View file

@ -115,12 +115,10 @@ protected:
inline std::size_t operator()(const std::pair<uint64_t,uint64_t> &p) const { return (std::size_t)(p.first ^ p.second); }
};
virtual void _memberChanged(nlohmann::json &old,nlohmann::json &memberConfig,bool notifyListeners) {
fprintf(stderr, "PostgreSQL::_memberChanged\n");
DB::_memberChanged(old, memberConfig, notifyListeners);
}
virtual void _networkChanged(nlohmann::json &old,nlohmann::json &networkConfig,bool notifyListeners) {
fprintf(stderr, "PostgreSQL::_networkChanged\n");
DB::_networkChanged(old, networkConfig, notifyListeners);
}