slag

package
v1.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2024 License: Apache-2.0 Imports: 1 Imported by: 4

Documentation

Overview

Package slag provides a method for setting the log level from the command line.

func main() {
	var level slag.Level
	flag.Var(&level, "log-level", "log level")
	flag.Parse()
	slog.SetDefault(slog.New(slog.NewTextHandler(os.Stderr, &slog.HandlerOptions{Level: &level})))
}

See [./examples/logger](./examples/logger) for a full example.

This allows the log level to be set from the command line:

$ ./myprogram -log-level=debug

The slag.Level type is a wrapper around slog.Level that implements the flag.Value interface.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Level

type Level slog.Level

func (*Level) Level

func (l *Level) Level() slog.Level

func (*Level) Set

func (l *Level) Set(s string) error

func (*Level) String

func (l *Level) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL