|
71 | 71 | #include <lib/support/CodeUtils.h>
|
72 | 72 | #include <lib/support/DLLUtil.h>
|
73 | 73 | #include <lib/support/ScopedBuffer.h>
|
74 |
| -#include <lib/support/logging/CHIPLogging.h> |
75 | 74 | #include <platform/CHIPDeviceLayer.h>
|
76 | 75 | #include <setup_payload/QRCodeSetupPayloadParser.h>
|
77 | 76 | #include <system/SystemClock.h>
|
@@ -200,9 +199,6 @@ PyChipError pychip_ScriptDevicePairingDelegate_SetOpenWindowCompleteCallback(
|
200 | 199 | // BLE
|
201 | 200 | PyChipError pychip_DeviceCommissioner_CloseBleConnection(chip::Controller::DeviceCommissioner * devCtrl);
|
202 | 201 |
|
203 |
| -uint8_t pychip_DeviceController_GetLogFilter(); |
204 |
| -void pychip_DeviceController_SetLogFilter(uint8_t category); |
205 |
| - |
206 | 202 | const char * pychip_Stack_ErrorToString(ChipError::StorageType err);
|
207 | 203 | const char * pychip_Stack_StatusReportToString(uint32_t profileId, uint16_t statusCode);
|
208 | 204 | void pychip_Stack_SetLogFunct(LogMessageFunct logFunct);
|
@@ -353,22 +349,6 @@ const char * pychip_DeviceController_StatusReportToString(uint32_t profileId, ui
|
353 | 349 | return nullptr;
|
354 | 350 | }
|
355 | 351 |
|
356 |
| -uint8_t pychip_DeviceController_GetLogFilter() |
357 |
| -{ |
358 |
| -#if _CHIP_USE_LOGGING |
359 |
| - return chip::Logging::GetLogFilter(); |
360 |
| -#else |
361 |
| - return chip::Logging::kLogCategory_None; |
362 |
| -#endif |
363 |
| -} |
364 |
| - |
365 |
| -void pychip_DeviceController_SetLogFilter(uint8_t category) |
366 |
| -{ |
367 |
| -#if _CHIP_USE_LOGGING |
368 |
| - chip::Logging::SetLogFilter(category); |
369 |
| -#endif |
370 |
| -} |
371 |
| - |
372 | 352 | PyChipError pychip_DeviceController_ConnectBLE(chip::Controller::DeviceCommissioner * devCtrl, uint16_t discriminator,
|
373 | 353 | uint32_t setupPINCode, chip::NodeId nodeid)
|
374 | 354 | {
|
|
0 commit comments