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

Function cmd_log_error

FluidNC/src/ProcessSettings.cpp:337–346  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

335 return Error::Ok;
336}
337static 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}
347static Error cmd_log_warn(const char* value, AuthenticationLevel auth_level, Channel& out) {
348 if (value) {
349 if (*value == '*') {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected