mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
(trunk libT) #1791: debug message cleanup in tracker.c
This commit is contained in:
parent
eb538aa492
commit
e04fe5daaf
1 changed files with 5 additions and 5 deletions
|
@ -661,7 +661,7 @@ onScrapeResponse( tr_session * session,
|
||||||
t->scrapeIntervalSec = DEFAULT_SCRAPE_INTERVAL_SEC;
|
t->scrapeIntervalSec = DEFAULT_SCRAPE_INTERVAL_SEC;
|
||||||
|
|
||||||
tr_ndbg( t->name,
|
tr_ndbg( t->name,
|
||||||
"Scrape successful. Rescraping in %d seconds.",
|
"Scrape successful. Rescraping in %d seconds.",
|
||||||
t->scrapeIntervalSec );
|
t->scrapeIntervalSec );
|
||||||
|
|
||||||
success = TRUE;
|
success = TRUE;
|
||||||
|
@ -685,16 +685,16 @@ onScrapeResponse( tr_session * session,
|
||||||
if( 200 <= responseCode && responseCode <= 299 )
|
if( 200 <= responseCode && responseCode <= 299 )
|
||||||
{
|
{
|
||||||
const int interval = t->scrapeIntervalSec + t->randOffset;
|
const int interval = t->scrapeIntervalSec + t->randOffset;
|
||||||
dbgmsg( t->name, "request succeeded. rescraping in %d seconds",
|
dbgmsg( t->name, "Request succeeded. Rescraping in %d seconds",
|
||||||
interval );
|
interval );
|
||||||
tr_ndbg( t->name, "request succeeded. rescraping in %d seconds",
|
tr_ndbg( t->name, "Request succeeded. Rescraping in %d seconds",
|
||||||
interval );
|
interval );
|
||||||
t->scrapeAt = time( NULL ) + interval;
|
t->scrapeAt = time( NULL ) + interval;
|
||||||
}
|
}
|
||||||
else if( 300 <= responseCode && responseCode <= 399 )
|
else if( 300 <= responseCode && responseCode <= 399 )
|
||||||
{
|
{
|
||||||
const int interval = 5;
|
const int interval = 5;
|
||||||
dbgmsg( t->name, "got a redirect. retrying in %d seconds", interval );
|
dbgmsg( t->name, "Got a redirect. Retrying in %d seconds", interval );
|
||||||
t->scrapeAt = time( NULL ) + interval;
|
t->scrapeAt = time( NULL ) + interval;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -702,7 +702,7 @@ onScrapeResponse( tr_session * session,
|
||||||
const int interval = t->retryScrapeIntervalSec + t->randOffset;
|
const int interval = t->retryScrapeIntervalSec + t->randOffset;
|
||||||
dbgmsg(
|
dbgmsg(
|
||||||
t->name,
|
t->name,
|
||||||
"Tracker responded to scrape with %ld. Retrying in %d seconds.",
|
"Tracker responded to scrape with %ld. Retrying in %d seconds.",
|
||||||
responseCode, interval );
|
responseCode, interval );
|
||||||
t->retryScrapeIntervalSec *= 2;
|
t->retryScrapeIntervalSec *= 2;
|
||||||
t->scrapeAt = time( NULL ) + interval;
|
t->scrapeAt = time( NULL ) + interval;
|
||||||
|
|
Loading…
Reference in a new issue