Skip to content

Commit

Permalink
musikr.metadata: add missing log header
Browse files Browse the repository at this point in the history
  • Loading branch information
OxygenCobalt committed Dec 23, 2024
1 parent c379174 commit 518b80b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions musikr/src/main/cpp/log.h
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 518b80b

Please sign in to comment.