add LOG_TAG defines

This commit is contained in:
Brenton Bostick 2023-02-02 16:13:02 -05:00
parent 8373a0fa60
commit 71fc0dd097
4 changed files with 6 additions and 2 deletions

View File

@ -28,6 +28,8 @@
#include "ZT_jnilookup.h"
#include "ZT_jniutils.h"
#define LOG_TAG "Lookup"
JniLookup::JniLookup()
: m_jvm(NULL)
{

View File

@ -28,6 +28,8 @@
#include <sys/types.h>
#include <sys/socket.h>
#define LOG_TAG "Utils"
extern JniLookup lookup;
jobject createResultObject(JNIEnv *env, ZT_ResultCode code)

View File

@ -22,8 +22,6 @@
#include <jni.h>
#include <ZeroTierOne.h>
#define LOG_TAG "ZeroTierOneJNI"
#if defined(__ANDROID__)
#include <android/log.h>

View File

@ -37,6 +37,8 @@
#include <cassert>
#include <cstring>
#define LOG_TAG "Node"
// global static JNI Lookup Object
JniLookup lookup;