Skip to content

Commit

Permalink
Make log case consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwilsdon committed Apr 5, 2020
1 parent 60ac9cd commit aa90fb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ go get -u github.com/jackwilsdon/go-ppic/cmd/ppicd
After starting up the server, you should see something similar to the following output;

```Text
2006/01/02 15:04:05 Starting server on http://127.0.0.1:3000...
2006/01/02 15:04:05 starting server on http://127.0.0.1:3000...
```

Visiting the URL that the server is running on will give you the image for an empty string. You can get the image for
Expand Down
2 changes: 1 addition & 1 deletion cmd/ppicd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func main() {
log.Fatalf("error: %s\n", err)
}

log.Printf("Starting server on http://%s...\n", addressToString(listener.Addr()))
log.Printf("starting server on http://%s...\n", addressToString(listener.Addr()))

// Wrap the handler in a logger if verbose mode is enabled.
if *verbose {
Expand Down

0 comments on commit aa90fb2

Please sign in to comment.