summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-03-07 14:51:06 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-03-07 14:51:06 -0800
commit2f79a1507183bbbf7bd571ad590baf1c242e5bc4 (patch)
tree83d3cbfc9efdc945a91d9597f17ec6380ebe3c59
parent100d01836041713337dd9532e417fb010bfb381c (diff)
parentf24e48bbbc93da7655aabe04adf42eff2efcf69e (diff)
downloadframeworks_av-2f79a1507183bbbf7bd571ad590baf1c242e5bc4.zip
frameworks_av-2f79a1507183bbbf7bd571ad590baf1c242e5bc4.tar.gz
frameworks_av-2f79a1507183bbbf7bd571ad590baf1c242e5bc4.tar.bz2
Merge "Change trace labels" into honeycomb-mr1
-rwxr-xr-xlibvideoeditor/osal/src/M4PSW_Trace.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libvideoeditor/osal/src/M4PSW_Trace.c b/libvideoeditor/osal/src/M4PSW_Trace.c
index ef39d82..17b0af6 100755
--- a/libvideoeditor/osal/src/M4PSW_Trace.c
+++ b/libvideoeditor/osal/src/M4PSW_Trace.c
@@ -64,9 +64,9 @@ M4OSAL_TRACE_EXPORT_TYPE void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file ,
/* do the actual print */
#ifdef NO_FILE
- __android_log_print(ANDROID_LOG_INFO, "LifeVibesTrace", "%s", (char*)message);
+ __android_log_print(ANDROID_LOG_INFO, "M4OSA_Trace", "%s", (char*)message);
#else /* NO_FILE */
- __android_log_print(ANDROID_LOG_INFO, "LifeVibesTrace", "%s", "%s at %lu in %s",
+ __android_log_print(ANDROID_LOG_INFO, "M4OSA_Trace", "%s", "%s at %lu in %s",
(char *)message, line, file);
#endif /* NO_FILE */
@@ -89,9 +89,9 @@ M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_TRACE_traceFunction(M4OSA_UInt32 line,
/* do the actual print */
#ifdef NO_FILE
- __android_log_print(ANDROID_LOG_INFO, "LifeVibesTrace", "%s", (char*)message);
+ __android_log_print(ANDROID_LOG_INFO, "M4OSA_TRACE_traceFunction", "%s", (char*)message);
#else /* NO_FILE */
- __android_log_print(ANDROID_LOG_INFO, "LifeVibesTrace", "%s", "%s at %lu in %s",
+ __android_log_print(ANDROID_LOG_INFO, "M4OSA_TRACE_traceFunction", "%s", "%s at %lu in %s",
(char *)message, line, (char*)file);
#endif /* NO_FILE */