Index: platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
diff --git a/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h b/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7e1ef3ac40fa0c44760301fdde7c2c6b07c01301 |
--- /dev/null |
+++ b/platform_tools/android/apps/canvasproof/src/main/jni/Debugf.h |
@@ -0,0 +1,14 @@ |
+/* |
+ * Copyright 2015 Google Inc. |
+ * |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+#ifndef Debugf_DEFINED |
+#define Debugf_DEFINED |
+ |
+#include <android/log.h> |
+#define Debugf(DTAG, ...) \ |
+ __android_log_print(ANDROID_LOG_VERBOSE, DTAG, __VA_ARGS__) |
+ |
+#endif // Debugf_DEFINED |