<- all repos

slog @ main

😩 a dead simple logging interface for go

clone

git clone ssh://git.ovine.xyz/slog

readme

slog 😩

a dead simple logging interface for go.

// printf
slog.Info("opened port %d", 3000)

// printf on err and continue
slog.Warn(err, "something happened but it's ok")

// printf on err and exit
slog.Die(err, "oopsie poopsie!")

Warn and Die only do stuff when err is not nil.

TODO

🎨 add some color to the output