Skip to content

Commit 6a3e50c

Browse files
committed
fix printf directive %w -> %v
1 parent feb224d commit 6a3e50c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

httptap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ func Main() error {
619619
// open the file right away so that filesystem errors get surfaced as soon as possible
620620
f, err := os.Create(args.DumpHAR)
621621
if err != nil {
622-
log.Printf("error opening HAR file for writing: %w", err)
622+
log.Printf("error opening HAR file for writing: %v", err)
623623
}
624624
defer f.Close()
625625

0 commit comments

Comments
 (0)