| 1 | #include "crow_all.h" |
| 2 | |
| 3 | class ExampleLogHandler : public crow::ILogHandler |
| 4 | { |
| 5 | public: |
| 6 | void log(const std::string& /*message*/, crow::LogLevel /*level*/) override |
| 7 | { |
| 8 | // cerr << "ExampleLogHandler -> " << message; |
| 9 | } |
| 10 | }; |
| 11 | |
| 12 | int main() |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected