From 518b80bdf2145816fe7c532840357c98daeb455d Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Mon, 23 Dec 2024 16:50:54 -0500 Subject: [PATCH] musikr.metadata: add missing log header --- musikr/src/main/cpp/log.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 musikr/src/main/cpp/log.h diff --git a/musikr/src/main/cpp/log.h b/musikr/src/main/cpp/log.h new file mode 100644 index 000000000..c11d3cec0 --- /dev/null +++ b/musikr/src/main/cpp/log.h @@ -0,0 +1,16 @@ +// +// Created by oxycblt on 12/23/24. +// + +#ifndef AUXIO_LOG_H +#define AUXIO_LOG_H + +#include + +#define LOG_TAG "taglib_jni" +#define LOGE(...) \ + ((void)__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)) +#define LOGD(...) \ + ((void)__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) + +#endif //AUXIO_LOG_H