diff options
| author | Dante Russo <drusso@codeaurora.org> | 2016-07-07 17:16:55 -0700 |
|---|---|---|
| committer | firebird11 <hbgassel@gmail.com> | 2019-01-12 14:01:54 +0100 |
| commit | edd2c4774dea5cf0cdb8af9f8e4eace789fe4c1a (patch) | |
| tree | b000d40740dabf00d3b71ab41cfa00b95671a481 | |
| parent | b9a75a86ec513ad29c442cd5c25dac97738900b2 (diff) | |
g3-common: gps: Remove nmea log
Nmea log print is removed, as it can be
excessive during gps tracking.
Bugs: 29499503 29272976
Change-Id: Ia60295207b6bbbcb24bbede4f1802c0c7a2f2544
| -rw-r--r-- | gps/libloc_api_50001/loc_eng.cpp | 1 | ||||
| -rw-r--r-- | gps/libloc_api_50001/loc_eng_nmea.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/gps/libloc_api_50001/loc_eng.cpp b/gps/libloc_api_50001/loc_eng.cpp index 479a27b..7fa5545 100644 --- a/gps/libloc_api_50001/loc_eng.cpp +++ b/gps/libloc_api_50001/loc_eng.cpp @@ -951,7 +951,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); diff --git a/gps/libloc_api_50001/loc_eng_nmea.cpp b/gps/libloc_api_50001/loc_eng_nmea.cpp index 4c6b9a3..2485c59 100644 --- a/gps/libloc_api_50001/loc_eng_nmea.cpp +++ b/gps/libloc_api_50001/loc_eng_nmea.cpp @@ -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); |
