Refactor: refactor golang flavor

This commit is contained in:
kr328
2021-09-11 18:27:02 +08:00
parent 11c4e19e0c
commit e364af393a
54 changed files with 16 additions and 12 deletions

View File

@@ -0,0 +1,9 @@
#include "trace.h"
#if ENABLE_TRACE
void trace_method_exit(const char **name) {
__android_log_print(ANDROID_LOG_VERBOSE, TAG, "TRACE-OUT %s", *name);
}
#endif