summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRALOVICH, Kristof <tade60@freemail.hu>2014-01-19 17:37:42 +0100
committerRALOVICH, Kristof <tade60@freemail.hu>2014-01-19 17:37:42 +0100
commitfec92f34e476bf12f101845fb55feae134b814f4 (patch)
tree74717d4e2b26729403967ce1d1c507b8463085e2 /src
parent6962ecdd2a88eb44629f607b2b5c18ab0dcd4381 (diff)
FIT: omit extra printing
Diffstat (limited to 'src')
-rw-r--r--src/FIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FIT.cpp b/src/FIT.cpp
index 442172d..ce49998 100644
--- a/src/FIT.cpp
+++ b/src/FIT.cpp
@@ -1239,7 +1239,7 @@ bool FIT::parseZeroFile(vector<uint8_t> &data, ZeroFileContent &zeroFileContent)
for(size_t i = 0; i < zeroFileContent.zfRecords.size(); i++)
{
ZeroFileRecord& zfRecord(zeroFileContent.zfRecords[i]);
- logger() << hex << setw(4) << setfill('0') << (unsigned)zfRecord.index << ": " <<
+ LOG(LOG_DBG2) << hex << setw(4) << setfill('0') << (unsigned)zfRecord.index << ": " <<
GarminConvert::localTime(zfRecord.timeStamp) << "\n";
switch(zfRecord.recordType)
{