musikr.metadata: add missing log header

This commit is contained in:
Alexander Capehart 2024-12-23 16:50:54 -05:00
parent c379174ffe
commit 518b80bdf2
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

16
musikr/src/main/cpp/log.h Normal file
View file

@ -0,0 +1,16 @@
//
// Created by oxycblt on 12/23/24.
//
#ifndef AUXIO_LOG_H
#define AUXIO_LOG_H
#include <android/log.h>
#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