Categorygithub.com/tuxgal/tuxlog
modulepackage
0.4.0
Repository: https://github.com/tuxgal/tuxlog.git
Documentation: pkg.go.dev

# README

tuxlog

PkgGoDev Build Tests Lint CodeQL Go Report Card

A go library that provides minimalistic level logging based on the tuxlogi generic level logging interface.

The goal is minimalism with no external dependencies other than the standard go library and the tuxlogi interface itself.

This is currently used by cablemodemcli and other projects in go used by tuxgal and tuxgalhomelab.

# Functions

NewConsoleLoggerConfig returns a logger configuration for logging to stdout with the maximum logging level set to Info.
NewLogger instantiates a Logger.
No description provided by the author

# Constants

LvlDebug represents the Debug log level.
LvlError represents the Error log level.
LvlFatal represents the Fatal log level.
LvlInfo represents the Info log level.
LvlTrace represents the Trace log level.
LvlWarn represents the Warn log level.

# Structs

Config contains the configuration for the logger.

# Type aliases

Level represents the logging level used by the tuxlog logger.