diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-14 13:43:42 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-10-25 16:12:40 +0200 |
commit | 847593228de8634bf6ef5933a474c7e63be59146 (patch) | |
tree | d3b8c956c466f7e3efd53af5049dc8bf4369446b /src/net.cpp | |
parent | 1f7c5c5a3ec8c06862835f30caffdac0466ca22f (diff) |
fix some thread related log messages
- "ThreadIRCSeed started" was not displayed, even if the thread ran
(although only for a short time as the "do we want this thread?"-checks
happen IN ThreadIRCSeed2())
- the patch ensures we always get that message
- add a "ThreadIRCSeed trying to connect..." message
- add missing "ThreadDumpAddress started" message
Diffstat (limited to 'src/net.cpp')
-rw-r--r-- | src/net.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/net.cpp b/src/net.cpp index 2598f0214e..8ab596f06b 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1313,6 +1313,8 @@ void DumpAddresses() void ThreadDumpAddress2(void* parg) { + printf("ThreadDumpAddress started\n"); + vnThreadsRunning[THREAD_DUMPADDRESS]++; while (!fShutdown) { |