| 27 | #if ENABLE_LOGGING |
| 28 | |
| 29 | LogDispatcher::Proxy::Proxy(LogDispatcher& guy) : that(guy), that_enabled(that.CheckEnabled()) |
| 30 | { |
| 31 | if (that_enabled) |
| 32 | { |
| 33 | i_file = ""; |
| 34 | i_line = 0; |
| 35 | flags = that.src_config->flags; |
| 36 | // Create logger prefix |
| 37 | that.CreateLogLinePrefix(os); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | LogDispatcher::Proxy LogDispatcher::operator()() |
| 42 | { |
nothing calls this directly
no test coverage detected