summaryrefslogtreecommitdiffstats
path: root/libvideoeditor/osal
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-03-04 14:43:31 -0800
committerJames Dong <jdong@google.com>2011-03-04 14:43:31 -0800
commitf24e48bbbc93da7655aabe04adf42eff2efcf69e (patch)
treebc42c2d1a43918de93020581b420d063dad7c827 /libvideoeditor/osal
parent0a8f12903f52c4f2b718123bf7e1232acfa19c20 (diff)
downloadframeworks_av-f24e48bbbc93da7655aabe04adf42eff2efcf69e.zip
frameworks_av-f24e48bbbc93da7655aabe04adf42eff2efcf69e.tar.gz
frameworks_av-f24e48bbbc93da7655aabe04adf42eff2efcf69e.tar.bz2
Change trace labels
bug - 3385135 Change-Id: Iad66e122a9e2ce7cce26779f679cbf04dd1a5434
Diffstat (limited to 'libvideoeditor/osal')
-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 */