logging

package
v0.4.1 Latest Latest
Warning

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

Go to latest
Published: Sep 11, 2024 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Poor man's logging. Implements 2-level loggers for Info and Debug. Minimal wrap around standard library's "log" package.

Index

Constants

This section is empty.

Variables

View Source
var (

	// Each log-level logger should be explicitly enabled via call to Enable*Logger().
	DebugLogger = log.New(io.Discard, debugPrefix, debugFlags)
	InfoLogger  = log.New(io.Discard, infoPrefix, infoFlags)
)

Functions

func Debug

func Debug(v ...interface{})

func Debugf

func Debugf(format string, v ...interface{})

func EnableDebugLogger

func EnableDebugLogger()

EnableDebugLogger helper function to explicitly enable DebugLogger.

func EnableInfoLogger

func EnableInfoLogger()

EnableInfoLogger helper function to explicitly enable InfoLogger.

func Info

func Info(v ...interface{})

func Infof

func Infof(format string, v ...interface{})

Types

This section is empty.

Jump to

Keyboard shortcuts

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