summaryrefslogtreecommitdiff
path: root/src/utils.cpp
diff options
context:
space:
mode:
authorGravatar Andreas Krennmair <ak@synflood.at> 2008-03-12 23:22:42 +0000
committerGravatar Andreas Krennmair <ak@synflood.at> 2008-03-12 23:22:42 +0000
commit447720e74f622b74ebb929e21c70622d8346d2d1 (patch)
tree3fd0dcea7d521e61b1cd903dc28645e89d864916 /src/utils.cpp
parent297a7162d6e2a7a34bbd396119d9a5c90b41af56 (diff)
downloadnewsboat-447720e74f622b74ebb929e21c70622d8346d2d1.tar.gz
newsboat-447720e74f622b74ebb929e21c70622d8346d2d1.tar.zst
newsboat-447720e74f622b74ebb929e21c70622d8346d2d1.zip
Andreas Krennmair:
fixed issue #60.
Diffstat (limited to '')
-rw-r--r--src/utils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.cpp b/src/utils.cpp
index def18575..2e6a6382 100644
--- a/src/utils.cpp
+++ b/src/utils.cpp
@@ -281,9 +281,9 @@ std::string utils::convert_text(const std::string& text, const std::string& toco
case EINVAL:
result.append(old_outbufp, outbufp - old_outbufp);
result.append("?");
- GetLogger().log(LOG_DEBUG, "utils::convert_text: hit EILSEQ/EINVAL: result = `%s'", result.c_str());
+ // GetLogger().log(LOG_DEBUG, "utils::convert_text: hit EILSEQ/EINVAL: result = `%s'", result.c_str());
inbufp += strlen(inbufp) - inbytesleft + 1;
- GetLogger().log(LOG_DEBUG, "utils::convert_text: new inbufp: `%s'", inbufp);
+ // GetLogger().log(LOG_DEBUG, "utils::convert_text: new inbufp: `%s'", inbufp);
inbytesleft = strlen(inbufp);
break;
}
@@ -292,8 +292,8 @@ std::string utils::convert_text(const std::string& text, const std::string& toco
}
} while (inbytesleft > 0);
- GetLogger().log(LOG_DEBUG, "utils::convert_text: before: %s", text.c_str());
- GetLogger().log(LOG_DEBUG, "utils::convert_text: after: %s", result.c_str());
+ // GetLogger().log(LOG_DEBUG, "utils::convert_text: before: %s", text.c_str());
+ // GetLogger().log(LOG_DEBUG, "utils::convert_text: after: %s", result.c_str());
iconv_close(cd);