README | 2 +- cmd/gorecsel/main.go | 2 +- go.mod | 2 +- slog/handler.go | 2 +- slog/handler_test.go | 2 +- diff --git a/README b/README index 56582839111554c801a8078b3254c0f7ad001ca236f561eeb90edcb0098a32c9..fa0cbe09795cd8677eec5a393abaae3cace2b571a1eea3e9251071b0e24047cc 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ Limitations: * leading spaces in the first line of the value are ignored * trailing backslash at the end of lines is followed by space -Also there is go.cypherpunks.su/recfile/v2/slog.NewRecfileHandler log/slog +Also there is go.stargrave.org/recfile/v4/slog.NewRecfileHandler log/slog handler to write your logs in recfile format directly. It is free software: see the file COPYING for copying conditions. diff --git a/cmd/gorecsel/main.go b/cmd/gorecsel/main.go index b96a9ce1d4a29ef2375c52e5ed81dcb63a510eefc70b9890d25f6eed6b9ce074..33a5a298185c7188b1b02558cff5b42c03d0afd1b36273fc9b4c762c4a8e19c1 100644 --- a/cmd/gorecsel/main.go +++ b/cmd/gorecsel/main.go @@ -5,7 +5,7 @@ "fmt" "io" "os" - "go.cypherpunks.su/recfile/v3" + "go.stargrave.org/recfile/v4" ) func main() { diff --git a/go.mod b/go.mod index 77d4b43d046906f16d5c1ad4178a9a5d62cb97e5c0a426323f16a5c97aa2e063..5b5e146dd0f83d4da3be18827d2d10d9de57c2aabe5cc96604bc16afeabfaf34 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module go.cypherpunks.su/recfile/v3 +module go.stargrave.org/recfile/v4 go 1.22 diff --git a/slog/handler.go b/slog/handler.go index 897c60447ac9256e034b8a2ef9ca5391d62c4a0d80aca37fa75a6a2199b12690..61e78d988dd0ba3069ece0628483dce6e29d371c6c88442e87d9530dd0ea7cc5 100644 --- a/slog/handler.go +++ b/slog/handler.go @@ -23,7 +23,7 @@ "log/slog" "sync" "time" - "go.cypherpunks.su/recfile/v3" + "go.stargrave.org/recfile/v4" ) type RecfileHandler struct { diff --git a/slog/handler_test.go b/slog/handler_test.go index a368cb6a7bfb105a5894061eb13bd504707f4d21933ea34295ec41597d1b623e..b87bac9b1d525bfafa912c497f0bbbf6a5f0e8743067e7dac752a26f85d4810c 100644 --- a/slog/handler_test.go +++ b/slog/handler_test.go @@ -22,7 +22,7 @@ "log/slog" "testing" "time" - "go.cypherpunks.su/recfile/v3" + "go.stargrave.org/recfile/v4" ) func TestBasic(t *testing.T) {