Skip to content

Commit

Permalink
Fix improper use of Printf
Browse files Browse the repository at this point in the history
  • Loading branch information
prplecake committed Mar 15, 2022
1 parent 7f78167 commit fce549b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bookmarks.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func processBookmarks(data []byte) ([]bookmark, error) {
if debug {
var jsonResult bytes.Buffer
json.Indent(&jsonResult, data, "", " ")
log.Printf(jsonResult.String())
log.Print(jsonResult.String())
}

return bookmarks, nil
Expand Down

0 comments on commit fce549b

Please sign in to comment.