Bluenet  5.7.0
Bluenet, firmware for nRF52 smart home devices
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cs_LogPlainText.h
Go to the documentation of this file.
1/*
2 * Author: Crownstone Team
3 * Copyright: Crownstone (https://crownstone.rocks)
4 * Date: Sep 1, 2022
5 * License: LGPLv3+, Apache License 2.0, and/or MIT (triple-licensed)
6 */
7
8#pragma once
9
11
12void cs_log_printf(const char* str, ...);
13__attribute__((unused)) static bool _logPrefixPlainText = true;
14
15// Adding the file name and line number, adds a lot to the binary size.
16#define _FILE (sizeof(__FILE__) > 30 ? __FILE__ + (sizeof(__FILE__) - 30 - 1) : __FILE__)
17
18#define _log(level, addNewLine, fmt, ...) \
19 if (level <= SERIAL_VERBOSITY) { \
20 if (_logPrefixPlainText) { \
21 cs_log_printf("[%-30.30s : %-4d] ", _FILE, __LINE__); \
22 } \
23 cs_log_printf(fmt, ##__VA_ARGS__); \
24 if (addNewLine) { \
25 cs_log_printf("\r\n"); \
26 } \
27 _logPrefixPlainText = addNewLine; \
28 }
29
30#define _logArray(level, addNewLine, pointer, size, ...)
void cs_log_printf(const char *str,...)
static bool _logPrefixPlainText
Definition: cs_LogPlainText.h:13