| 1767 | // Filter |
| 1768 | |
| 1769 | void RemoteDebug::setFilter(String filter) { |
| 1770 | |
| 1771 | _filter = filter; |
| 1772 | _filter.toLowerCase(); // TODO: option to case insensitive ? |
| 1773 | _filterActive = true; |
| 1774 | |
| 1775 | debugPrint("* Debug: Filter active: "); |
| 1776 | debugPrintln(_filter); |
| 1777 | |
| 1778 | } |
| 1779 | |
| 1780 | void RemoteDebug::setNoFilter() { |
| 1781 |
nothing calls this directly
no outgoing calls
no test coverage detected