logger to postgres database
| 50 | |
| 51 | /// logger to postgres database |
| 52 | struct pqxx_logger : stats_collecting_logger { |
| 53 | long id; |
| 54 | std::shared_ptr<pqxx::connection> c; |
| 55 | pqxx_logger(std::string target, std::string conninfo, struct schema &s); |
| 56 | virtual void generated(prod &query); |
| 57 | virtual void error(prod &query, const dut::failure &e); |
| 58 | }; |
| 59 | |
| 60 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected