Remove unneeded nmea_cb print
The nmea_cb print can cause excess logging Change-Id: Ifb9bfe9b3afff224fd3cfe6ec718f3c3cbe45987 CRs-fixed: 974592
This commit is contained in:
parent
625c8c6e4e
commit
41961e47d5
2 changed files with 0 additions and 2 deletions
|
@ -902,7 +902,6 @@ void LocEngReportNmea::proc() const {
|
|||
struct timeval tv;
|
||||
gettimeofday(&tv, (struct timezone *) NULL);
|
||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %d, mLen);
|
||||
|
||||
if (locEng->nmea_cb != NULL)
|
||||
locEng->nmea_cb(now, mNmea, mLen);
|
||||
|
|
|
@ -59,7 +59,6 @@ void loc_eng_nmea_send(char *pNmea, int length, loc_eng_data_s_type *loc_eng_dat
|
|||
struct timeval tv;
|
||||
gettimeofday(&tv, (struct timezone *) NULL);
|
||||
int64_t now = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
|
||||
CALLBACK_LOG_CALLFLOW("nmea_cb", %p, pNmea);
|
||||
if (loc_eng_data_p->nmea_cb != NULL)
|
||||
loc_eng_data_p->nmea_cb(now, pNmea, length);
|
||||
LOC_LOGD("NMEA <%s", pNmea);
|
||||
|
|
Loading…
Reference in a new issue