mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-10 06:48:07 +00:00
redirect log to bitcoin/util.h printf
This commit is contained in:
parent
662c5fa833
commit
c81308b2a2
@ -32,6 +32,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
#include "libtorrent/pch.hpp"
|
#include "libtorrent/pch.hpp"
|
||||||
|
|
||||||
|
#include "../../src/util.h"
|
||||||
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <set>
|
#include <set>
|
||||||
@ -740,7 +742,7 @@ namespace aux {
|
|||||||
{
|
{
|
||||||
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
||||||
m_logger = create_log("main_session", listen_port(), false);
|
m_logger = create_log("main_session", listen_port(), false);
|
||||||
session_log("log created");
|
session_log("session_impl::start_session log created");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
error_code ec;
|
error_code ec;
|
||||||
@ -4942,7 +4944,9 @@ retry:
|
|||||||
va_end(v);
|
va_end(v);
|
||||||
char buf[450];
|
char buf[450];
|
||||||
snprintf(buf, sizeof(buf), "%s: %s\n", time_now_string(), usr);
|
snprintf(buf, sizeof(buf), "%s: %s\n", time_now_string(), usr);
|
||||||
(*m_logger) << buf;
|
// printf is the bitcoin/util.h logger
|
||||||
|
printf(buf);
|
||||||
|
//(*m_logger) << buf;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -5411,7 +5415,7 @@ retry:
|
|||||||
|
|
||||||
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
||||||
m_logger = create_log("main_session", listen_port(), false);
|
m_logger = create_log("main_session", listen_port(), false);
|
||||||
session_log("log created");
|
session_log("session_impl::listen_on log created");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6495,7 +6499,9 @@ retry:
|
|||||||
va_end(v);
|
va_end(v);
|
||||||
char buf[1280];
|
char buf[1280];
|
||||||
snprintf(buf, sizeof(buf), "%s: %s\n", time_now_string(), usr);
|
snprintf(buf, sizeof(buf), "%s: %s\n", time_now_string(), usr);
|
||||||
(*m_ses.m_logger) << buf;
|
// printf is the bitcoin/util.h logger
|
||||||
|
printf(buf);
|
||||||
|
//(*m_ses.m_logger) << buf;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}}
|
}}
|
||||||
|
Loading…
Reference in New Issue
Block a user