| 19 | }; |
| 20 | |
| 21 | void SetCustomLoggingFunction(TCustomLoggingFunction loggingFunc) { |
| 22 | THnswLog::Instance().ResetBackend(MakeHolder<TCustomFuncLogger>(loggingFunc)); |
| 23 | } |
| 24 | |
| 25 | void RestoreOriginalLogger() { |
| 26 | THnswLog::Instance().ResetBackend(CreateLogBackend("cerr")); |
nothing calls this directly
no test coverage detected