| 313 | } |
| 314 | |
| 315 | void Framework::log_info(const std::string &info) |
| 316 | { |
| 317 | if (_log_level >= LogLevel::DEBUG) |
| 318 | { |
| 319 | func_on_all_printers([&](Printer *p) { p->print_info(info); }); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | void Framework::log_warning(const std::string &warning) |
| 324 | { |
no test coverage detected