import "oss.terrastruct.com/d2/lib/simplelog"
Package simplelog contains a very simple interface for logging strings at either Debug, Info, or Error levels
simplelog.go
type Logger interface { Debug(string) Info(string) Error(string) }
func FromCmdLog(cl *cmdlog.Logger) Logger
func FromLibLog(ctx context.Context) Logger
func Make(logDebug, logInfo, logError *func(string)) Logger