musikr.metadata: add missing log header
This commit is contained in:
parent
c379174ffe
commit
518b80bdf2
1 changed files with 16 additions and 0 deletions
16
musikr/src/main/cpp/log.h
Normal file
16
musikr/src/main/cpp/log.h
Normal 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
|
Loading…
Reference in a new issue