Opened 5 years ago
Last modified 5 years ago
#6112 new Bug
Unnecessary items filling the Message Log in torrent.c
Reported by: | x190 | Owned by: | jordan |
---|---|---|---|
Priority: | Normal | Milestone: | None Set |
Component: | libtransmission | Version: | 2.92 |
Severity: | Normal | Keywords: | |
Cc: |
Description
Line 3321:
tr_logAddTorDbg (tor, "[LAZY] checking just-completed piece %zu", (size_t)p);
Should be:
tr_deeplog_tor (tor, "%s", "[LAZY] checking just-completed piece %zu", (size_t)p);
Line 3330:
tr_logAddTorErr (tor, _("Piece %"PRIu32", which was just downloaded, failed its checksum test"), p);
Should be:
tr_deeplog_tor (tor, _("Piece %"PRIu32", which was just downloaded, failed its checksum test"), p);
Change History (1)
comment:1 Changed 5 years ago by x190
- Summary changed from Unecessary items filling the Message Log in torrent.c to Unnecessary items filling the Message Log in torrent.c
Note: See
TracTickets for help on using
tickets.