Compare commits

...

2 Commits

Author SHA1 Message Date
Jeff Carr 7e6b171e0d clean spew
Signed-off-by: Jeff Carr <jcarr@wit.com>
2024-01-14 12:27:10 -06:00
Jeff Carr 7f8cebc504 update spew path
Signed-off-by: Jeff Carr <jcarr@wit.com>
2024-01-14 11:54:13 -06:00
4 changed files with 10 additions and 3 deletions

View File

@ -2,8 +2,8 @@
redomod: redomod:
rm -f go.* rm -f go.*
unset GO111MODULES && go mod init GO111MODULE= go mod init
unset GO111MODULES && go mod tidy GO111MODULE= go mod tidy
github: github:
git push origin master git push origin master

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module go.wit.com/log
go 1.21.4
require go.wit.com/dev/davecgh/spew v1.1.3

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
go.wit.com/dev/davecgh/spew v1.1.3 h1:hqnB5qsPgC2cLZaJXqQJspQ5n/Ugry9kyL3tLk0hVzQ=
go.wit.com/dev/davecgh/spew v1.1.3/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=

View File

@ -2,7 +2,7 @@ package log
import ( import (
origlog "log" origlog "log"
"go.wit.com/spew" "go.wit.com/dev/davecgh/spew"
) )
func Spew(b any, a ...any) { func Spew(b any, a ...any) {