1 /*
2 * harfbuzz-debug.c
3 *
4 */
5 #include "harfbuzz-debug.h"
6
7 #define LOG_TAG "Harfbuzz"
8 #include <utils/Log.h>
9
Android_Debug(const char * file,int line,const char * function,const char * format,...)10 void Android_Debug(const char* file, int line,
11 const char* function, const char* format, ...) {
12 if (format[0] == '\n' && format[1] == '\0')
13 return;
14 va_list args;
15 va_start(args, format);
16 android_vprintLog(ANDROID_LOG_DEBUG, NULL, LOG_TAG, format, args);
17 va_end(args);
18 }
19
20
21
22