Only print PSA crypto sim server messages when DEBUG defined

Signed-off-by: Tom Cosgrove <[email protected]>
This commit is contained in:
Tom Cosgrove
2024-05-28 14:31:48 +03:00
parent f69445ccaf
commit 9919543f5c
@@ -19,8 +19,12 @@
#include "mbedtls/version.h"
#include "psa/crypto.h"
#ifdef DEBUG
#define SERVER_PRINT(fmt, ...) \
PRINT("Server: " fmt, ##__VA_ARGS__)
#else
#define SERVER_PRINT(...)
#endif
#define BUF_SIZE 25