use LOG_INF

This commit is contained in:
Mickael Bosch
2026-04-01 12:32:47 +02:00
parent 2813645669
commit f6484eccaa
3 changed files with 27 additions and 18 deletions

View File

@@ -6,12 +6,10 @@
#include <zephyr/data/json.h>
#include <log.hpp>
namespace JsonParser
{
void init();
void add_text(uint8_t* buf, size_t size);
void add_text(const uint8_t* buf, size_t size);
int json_printer(const char* bytes, size_t len, void* data);
class HandlerBase
@@ -63,9 +61,9 @@ public:
return false;
}
// info("received a valid json\n");
// LOG_INF"received a valid json\n");
// print(s);
// info("\n");
// LOG_INF"\n");
return true;
}
};