Skip to content

Commit

Permalink
fix: use fmt instead of log for Println
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Gleich <[email protected]>
  • Loading branch information
gleich committed Jul 27, 2024
1 parent 2bc80cb commit 9e64a87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"context"
"log"
"fmt"
"net/http"
"time"

Expand Down Expand Up @@ -76,7 +76,7 @@ func main() {
lumber.Success("init steam cache")
go steamCache.PeriodicUpdate(steam.FetchRecentlyPlayedGames, 5*time.Minute)

log.Println()
fmt.Println()
lumber.Info("STARTING SERVER")
err = http.ListenAndServe(":8000", r)
if err != nil {
Expand Down

0 comments on commit 9e64a87

Please sign in to comment.