-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Labels
conclusion: resolvedIssue was resolvedIssue was resolvedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement
Description
It would be nice for the Debug Utils to be orthogonal so that once a debug level is set, functionality in other parts of the code can be enabled or disabled programmatically.
Add int getDebugMessageLevel(void);
and int getDebugLevel(void);
to Arduino_DebugUtils.h
, complimenting the setDebugMessageLevel()
and setDebugLevel()
functions.
Add
int getDebugMessageLevel(void) {
return Debug.getDebugLevel();
}
to Arduino_DebugUtils.cpp
Metadata
Metadata
Assignees
Labels
conclusion: resolvedIssue was resolvedIssue was resolvedtopic: codeRelated to content of the project itselfRelated to content of the project itselftype: enhancementProposed improvementProposed improvement