diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-10-30 23:19:35 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-10-30 23:19:35 -0700 |
| commit | 578fc800039a99f07c0eb9e256519598a1c9dd27 (patch) | |
| tree | ae0f179b98b0fd962de554b3716aec088b2ea206 /src/irc.cpp | |
| parent | Merge pull request #1963 from sipa/bugfix_nonewblock (diff) | |
| parent | fix some thread related log messages (diff) | |
| download | discoin-578fc800039a99f07c0eb9e256519598a1c9dd27.tar.xz discoin-578fc800039a99f07c0eb9e256519598a1c9dd27.zip | |
Merge pull request #1932 from Diapolo/thread_printf
fix some thread related log messages
Diffstat (limited to 'src/irc.cpp')
| -rw-r--r-- | src/irc.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/irc.cpp b/src/irc.cpp index 17d5ff1a5..e8471a663 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -192,6 +192,8 @@ void ThreadIRCSeed(void* parg) // Make this thread recognisable as the IRC seeding thread RenameThread("bitcoin-ircseed"); + printf("ThreadIRCSeed started\n"); + try { ThreadIRCSeed2(parg); @@ -218,7 +220,8 @@ void ThreadIRCSeed2(void* parg) if (!GetBoolArg("-irc", false)) return; - printf("ThreadIRCSeed started\n"); + printf("ThreadIRCSeed trying to connect...\n"); + int nErrorWait = 10; int nRetryWait = 10; int nNameRetry = 0; |