Skip to content

Commit

Permalink
fix log path
Browse files Browse the repository at this point in the history
  • Loading branch information
vadiminshakov committed Sep 26, 2024
1 parent b4a44ee commit d3e70f9
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 @@ -25,11 +25,11 @@ func main() {
panic(err)
}

mlog, err := gowal.NewWAL("wal/msgs", "msgs_")
mlog, err := gowal.NewWAL("wal", "msgs_")
if err != nil {
panic(err)
}
vlog, err := gowal.NewWAL("wal/votes", "votes_")
vlog, err := gowal.NewWAL("wal", "votes_")
if err != nil {
panic(err)
}
Expand Down

0 comments on commit d3e70f9

Please sign in to comment.