mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-06-01 14:30:17 +02:00
10 lines
237 B
C
10 lines
237 B
C
#pragma once
|
|
|
|
#include <android/log.h>
|
|
|
|
#define LOG_TAG "SnapEnhanceNative"
|
|
|
|
#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
|
|
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
|
|
|