watchtower/multi: fix logging in wtclient

This commit is contained in:
Conner Fromknecht 2019-06-19 19:57:59 -07:00
parent 2305dd1c2c
commit fad8932d75
No known key found for this signature in database
GPG Key ID: E7D737B67FA592C7
3 changed files with 3 additions and 3 deletions

View File

@ -738,7 +738,7 @@ func (c *TowerClient) taskRejected(task *backupTask, curStatus reserveStatus) {
case reserveExhausted:
c.stats.sessionExhausted()
log.Debugf("Session %v exhausted, %s queued for next session",
log.Debugf("Session %v exhausted, %v queued for next session",
c.sessionQueue.ID(), task.id)
// Cache the task that we pulled off, so that we can process it

View File

@ -199,7 +199,7 @@ func (q *sessionQueue) AcceptTask(task *backupTask) (reserveStatus, bool) {
numPending := uint32(q.pendingQueue.Len())
maxUpdates := q.cfg.ClientSession.Policy.MaxUpdates
log.Debugf("SessionQueue(%x) deciding to accept %v seqnum=%d "+
log.Debugf("SessionQueue(%s) deciding to accept %v seqnum=%d "+
"pending=%d max-updates=%d",
q.ID(), task.id, q.seqNum, numPending, maxUpdates)

View File

@ -162,7 +162,7 @@ func (b *BackupID) Decode(r io.Reader) error {
}
// String returns a human-readable encoding of a BackupID.
func (b *BackupID) String() string {
func (b BackupID) String() string {
return fmt.Sprintf("backup(%x, %d)", b.ChanID, b.CommitHeight)
}