mirror of https://github.com/aria2/aria2
GnuTLS: Refine debug logging
parent
3194174d4b
commit
4dab854e08
|
@ -68,7 +68,7 @@ void LogFactory::adjustDependentLevels() {
|
||||||
}
|
}
|
||||||
#ifdef HAVE_LIBGNUTLS
|
#ifdef HAVE_LIBGNUTLS
|
||||||
if (level == Logger::A2_DEBUG) {
|
if (level == Logger::A2_DEBUG) {
|
||||||
gnutls_global_set_log_level(10);
|
gnutls_global_set_log_level(6);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
gnutls_global_set_log_level(0);
|
gnutls_global_set_log_level(0);
|
||||||
|
|
|
@ -74,7 +74,10 @@ namespace {
|
||||||
void gnutls_log_callback(int level, const char *str)
|
void gnutls_log_callback(int level, const char *str)
|
||||||
{
|
{
|
||||||
using namespace aria2;
|
using namespace aria2;
|
||||||
A2_LOG_DEBUG(fmt("GNUTLS: %d / %s", level, str));
|
// GnuTLS adds a newline. Drop it.
|
||||||
|
std::string msg(str);
|
||||||
|
msg.resize(msg.size() - 1);
|
||||||
|
A2_LOG_DEBUG(fmt("GnuTLS: <%d> %s", level, msg.c_str()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue