This patch makes the internal `message.h` require what it needs instead
of using the macros only if they exist. This makes it impossible to skip
logging in this header.
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Change-Id: I2dd300931479a1d0752b6f90079c826324e19ce1
Reviewed-on: https://review.lttng.org/c/babeltrace/+/1581
Tested-by: jenkins <jenkins@lttng.org>
Reviewed-by: Simon Marchi <simon.marchi@efficios.com>
#include "lib/object-pool.h"
#include <babeltrace2/types.h>
+/* Protection: this file uses BT_LIB_LOG*() macros directly */
+#ifndef BT_LIB_LOG_SUPPORTED
+# error Please include "lib/logging.h" before including this file.
+#endif
+
typedef struct bt_stream *(*get_stream_func)(
struct bt_message *message);
struct bt_message *msg = bt_object_pool_create_object(pool);
if (G_UNLIKELY(!msg)) {
-#ifdef BT_LIB_LOGE
BT_LIB_LOGE("Cannot allocate one message from message pool: "
"%![pool-]+o, %![graph-]+g", pool, graph);
-#endif
goto error;
}