Skip to content

Commit

Permalink
Fix logging message
Browse files Browse the repository at this point in the history
  • Loading branch information
torcolvin committed Nov 10, 2023
1 parent ad1cc68 commit c9907cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bucket-registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (r *bucketRegistry) getCachedBucket(name string) *Bucket {
// unregisterBucket removes a Bucket from the registry. Must be called before closing.
func (r *bucketRegistry) unregisterBucket(bucket *Bucket) {
name := bucket.name
debug("UNregisterBucket %v at %s", bucket, name, bucket.url)
debug("UNregisterBucket %v %s at %s", bucket, name, bucket.url)
r.lock.Lock()
defer r.lock.Unlock()

Expand Down

0 comments on commit c9907cf

Please sign in to comment.