| 262 | } |
| 263 | |
| 264 | void |
| 265 | LogObject::add_filter(LogFilter *filter, bool copy) |
| 266 | { |
| 267 | if (!filter) { |
| 268 | return; |
| 269 | } |
| 270 | m_filter_list.add(filter, copy); |
| 271 | } |
| 272 | |
| 273 | // we compute the object signature from the fieldlist_str and the printf_str |
| 274 | // of the LogFormat rather than from the format_str because the format_str |
no test coverage detected