| 365 | return Error::Ok; |
| 366 | } |
| 367 | static Error cmd_log_debug(const char* value, AuthenticationLevel auth_level, Channel& out) { |
| 368 | if (value) { |
| 369 | if (*value == '*') { |
| 370 | log_debug(value + 1); |
| 371 | } else { |
| 372 | log_debug_to(out, value); |
| 373 | } |
| 374 | } |
| 375 | return Error::Ok; |
| 376 | } |
| 377 | static Error cmd_log_verbose(const char* value, AuthenticationLevel auth_level, Channel& out) { |
| 378 | if (value) { |
| 379 | if (*value == '*') { |
nothing calls this directly
no outgoing calls
no test coverage detected