Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
gagliardetto committed Aug 16, 2023
1 parent 8fab703 commit f3c5ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
func openIndexStorage(ctx context.Context, where string) (ReaderAtCloser, error) {
where = strings.TrimSpace(where)
if strings.HasPrefix(where, "http://") || strings.HasPrefix(where, "https://") {
klog.Infof("opening index file from %q as HTTP remote file", where)
klog.Infof("opening file from %q as HTTP remote file", where)
rac, err := remoteHTTPFileAsIoReaderAt(ctx, where)
if err != nil {
return nil, fmt.Errorf("failed to open index file: %w", err)
Expand Down

0 comments on commit f3c5ddb

Please sign in to comment.