| 335 | return Error::Ok; |
| 336 | } |
| 337 | static Error cmd_log_error(const char* value, AuthenticationLevel auth_level, Channel& out) { |
| 338 | if (value) { |
| 339 | if (*value == '*') { |
| 340 | log_error(value + 1); |
| 341 | } else { |
| 342 | log_error_to(out, value); |
| 343 | } |
| 344 | } |
| 345 | return Error::Ok; |
| 346 | } |
| 347 | static Error cmd_log_warn(const char* value, AuthenticationLevel auth_level, Channel& out) { |
| 348 | if (value) { |
| 349 | if (*value == '*') { |
nothing calls this directly
no outgoing calls
no test coverage detected