Skip to content

Commit

Permalink
[estring][convertDVBUTF8] - only show debug when error - otherwise ge…
Browse files Browse the repository at this point in the history
…nerates 1000's of eTrace lines
  • Loading branch information
TwolDE2 committed Aug 26, 2024
1 parent 8160a6a commit 52e3f23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/base/estring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -649,13 +649,13 @@ std::string convertDVBUTF8(const unsigned char *data, int len, int table, int ts
if (table != 11)
table = data[i] + 4;
++i;
eTrace("[convertDVBUTF8] (1..11)text encoded in ISO-8859-%d", table);
/* eTrace("[convertDVBUTF8] (1..11)text encoded in ISO-8859-%d", table); */
break;
case ISO8859_xx:
{
int n = data[++i] << 8;
n |= (data[++i]);
eTrace("[convertDVBUTF8] (0x10)text encoded in ISO-8859-%d", n);
/* eTrace("[convertDVBUTF8] (0x10)text encoded in ISO-8859-%d", n); */
++i;
switch(n)
{
Expand Down

0 comments on commit 52e3f23

Please sign in to comment.