From 7a6e5978198a93ba6db743b7c96db2f389cf86e9 Mon Sep 17 00:00:00 2001 From: RobertByrnes Date: Tue, 16 Jul 2024 21:56:17 +0100 Subject: [PATCH] chore: Exclude SSL_CLIENT_TEST_ENVIRONMENT from log_ header file --- src/log_.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/log_.h b/src/log_.h index 2834bd2..d6c1abe 100644 --- a/src/log_.h +++ b/src/log_.h @@ -8,6 +8,8 @@ #ifndef LOG__H_ #define LOG__H_ +#ifndef SSL_CLIENT_TEST_ENVIRONMENT + #include #ifndef LOG_LEVEL_NONE @@ -58,4 +60,6 @@ #define log_v(...) if (LOG_LEVEL >= LOG_LEVEL_VERBOSE) { Serial.printf("V ("); Serial.printf(__VA_ARGS__); Serial.println(")"); } #endif +#endif // SSL_CLIENT_TEST_ENVIRONMENT + #endif // LOG__H_ \ No newline at end of file