Skip to content

Commit

Permalink
Logs: include remote file full URL (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
gagliardetto authored Feb 26, 2024
1 parent 97bc2fd commit 2ad5b9b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions http-range.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"io"
"path/filepath"
"strings"
"time"

Expand Down Expand Up @@ -53,7 +52,7 @@ func (r *readCloserWrapper) ReadAt(p []byte, off int64) (n int, err error) {
prefix = icon + purpleBG("[READ-CAR]")
}
}
klog.V(5).Infof(prefix+" %s:%d+%d (%s)\n", filepath.Base(r.name), off, len(p), took)
klog.V(5).Infof(prefix+" %s:%d+%d (%s)\n", (r.name), off, len(p), took)
}
}()
return r.rac.ReadAt(p, off)
Expand Down

0 comments on commit 2ad5b9b

Please sign in to comment.