Categorygithub.com/rkosegi/slog-config
repositorypackage
0.0.0-20250118142344-bfde02450a03
Repository: https://github.com/rkosegi/slog-config.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

Go structured log config

This repository contains code to simplify configuration of slog.

package main

import xlog "github.com/rkosegi/slog-config"

func main() {
	lc := xlog.MustNew("debug", "json")
	lc.Logger().Info("Hello World")
}

Output

{"ts":"2024-11-27T05:45:19.555Z","level":"info","caller":"main.go(main.main):7","msg":"Hello World"}