| 69 | class PyMMKVHandler : public mmkv::MMKVHandler { |
| 70 | public: |
| 71 | void mmkvLog(MMKVLogLevel level, const char *file, int line, const char *function, MMKVLog_t message) override { |
| 72 | if (g_logHandler) { |
| 73 | g_logHandler(level, file, line, function, message); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | MMKVRecoverStrategic onMMKVCRCCheckFail(const std::string &mmapID) override { |
| 78 | if (g_errorHandler) { |
nothing calls this directly
no outgoing calls
no test coverage detected