grim/convey

Port from logrus to log/slog
default tip
5 months ago, Elliott Sales de Andrade
c588f9b3f559
Port from logrus to log/slog

This doesn't really take much advantage of structured logging beyond what is already done (`id` and `idColor`), and consequently the log handler does not try to do any handling of anything more than that (i.e., grouping, or arbitrary attributes beyond those defined).

One should maybe have a `Context` available to pass in, but there isn't one, and anyway, the log handler doesn't use it, so I've passed in a `TODO` instead.

Everything else is just normal import/rename changes.

Testing Done:
Ran `go run . run`

Reviewed at https://reviews.imfreedom.org/r/2871/
package podman
import (
"errors"
)
var (
// common errors
ErrNoImage = errors.New("no image specified")
// build errors
ErrNoContainerfile = errors.New("no container file specified")
ErrContextOutsideOfWorkspace = errors.New("context is outside of the workspace")
// login/logout errors
ErrNoRegistry = errors.New("no registry specified")
ErrNoUsername = errors.New("no username provided")
ErrNoPassword = errors.New("no password provided")
// pull/push errors
ErrNoTags = errors.New("no tags specified")
// tag errors
ErrNoTargets = errors.New("no targets specified")
)