summaryrefslogtreecommitdiffstats
path: root/main/bte_logmsg.c
diff options
context:
space:
mode:
Diffstat (limited to 'main/bte_logmsg.c')
-rw-r--r--[-rwxr-xr-x]main/bte_logmsg.c42
1 files changed, 28 insertions, 14 deletions
diff --git a/main/bte_logmsg.c b/main/bte_logmsg.c
index c67dbbd..52502ae 100755..100644
--- a/main/bte_logmsg.c
+++ b/main/bte_logmsg.c
@@ -1,13 +1,27 @@
-/*****************************************************************************
-**
-** Name: bte_logmsg.c
-**
-** Description: Contains the LogMsg wrapper routines for BTE. It routes calls
-** the appropriate application's LogMsg equivalent.
-**
-** Copyright (c) 2001-2011, WIDCOMM Inc., All Rights Reserved.
-** WIDCOMM Bluetooth Core. Proprietary and confidential.
-******************************************************************************/
+/******************************************************************************
+ *
+ * Copyright (C) 2001-2012 Broadcom Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************************/
+
+/******************************************************************************
+ *
+ * Contains the LogMsg wrapper routines for BTE. It routes calls the
+ * appropriate application's LogMsg equivalent.
+ *
+ ******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
@@ -213,7 +227,7 @@ LogMsg(UINT32 trace_set_mask, const char *fmt_str, ...)
struct timezone tz;
struct tm *tm;
time_t t;
-
+
gettimeofday(&tv, &tz);
time(&t);
tm = localtime(&t);
@@ -268,14 +282,14 @@ ScrLog(UINT32 trace_set_mask, const char *fmt_str, ...)
int trace_layer = TRACE_GET_LAYER(trace_set_mask);
if (trace_layer >= TRACE_LAYER_MAX_NUM)
trace_layer = 0;
-
+
gettimeofday(&tv, &tz);
time(&t);
tm = localtime(&t);
sprintf(buffer, "%02d:%02d:%02d.%03ld ", tm->tm_hour, tm->tm_min, tm->tm_sec,
tv.tv_usec / 1000);
-
+
va_start(ap, fmt_str);
vsnprintf(&buffer[strlen(buffer)], BTE_LOG_MAX_SIZE, fmt_str, ap);
va_end(ap);
@@ -347,7 +361,7 @@ BT_API tBTTRC_LEVEL * BTA_SysSetTraceLevel(tBTTRC_LEVEL * p_levels)
while (0 != p_l->layer_id)
{
p_f_map = &bttrc_set_level_map[0];
-
+
while (0 != p_f_map->layer_id_start)
{
printf("BTA_SysSetTraceLevel - trace id in map start = %d end= %d, paramter id = %d\r\n", p_f_map->layer_id_start, p_f_map->layer_id_end, p_l->layer_id );