MCPcopy Create free account
hub / github.com/bdring/FluidNC / cmd_log_debug

Function cmd_log_debug

FluidNC/src/ProcessSettings.cpp:367–376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365 return Error::Ok;
366}
367static 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}
377static Error cmd_log_verbose(const char* value, AuthenticationLevel auth_level, Channel& out) {
378 if (value) {
379 if (*value == '*') {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected