template

package module
v0.0.0-...-245bae8 Latest Latest
Warning

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

Go to latest
Published: Apr 28, 2020 License: MIT Imports: 2 Imported by: 1

README

Logur adapter for TEMPLATE

GitHub Workflow Status Codecov Go Report Card Go Version go.dev reference

Installation

go get logur.dev/adapter/template

Usage

package main

import (
	templateadapter "logur.dev/adapter/template"
)

func main() {
	logger := templateadapter.New(/*logger*/)
}

Development

When all coding and testing is done, please run the test suite:

$ make check

License

The MIT License (MIT). Please see License File for more information.

Documentation

Overview

Package template provides a Logur adapter for TEMPLATE.

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Logger

type Logger struct {
}

Logger is a Logur adapter for TEMPLATE.

func New

func New(logger interface{}) *Logger

New returns a new Logur logger. If logger is nil, a default instance is created.

Example
package main

import (
	templateadapter "logur.dev/adapter/template"
)

func main() {
	var l interface{}
	logger := templateadapter.New(l)

	_ = logger
}
Output:

Example (Default)

If logger is nil, a default instance is created.

package main

import (
	templateadapter "logur.dev/adapter/template"
)

func main() {
	logger := templateadapter.New(nil)

	_ = logger
}
Output:

func (*Logger) Debug

func (l *Logger) Debug(msg string, fields ...map[string]interface{})

Debug implements the Logur Logger interface.

func (*Logger) DebugContext

func (l *Logger) DebugContext(_ context.Context, msg string, fields ...map[string]interface{})

func (*Logger) Error

func (l *Logger) Error(msg string, fields ...map[string]interface{})

Error implements the Logur Logger interface.

func (*Logger) ErrorContext

func (l *Logger) ErrorContext(_ context.Context, msg string, fields ...map[string]interface{})

func (*Logger) Info

func (l *Logger) Info(msg string, fields ...map[string]interface{})

Info implements the Logur Logger interface.

func (*Logger) InfoContext

func (l *Logger) InfoContext(_ context.Context, msg string, fields ...map[string]interface{})

func (*Logger) LevelEnabled

func (l *Logger) LevelEnabled(level logur.Level) bool

LevelEnabled implements the Logur LevelEnabler interface.

func (*Logger) Trace

func (l *Logger) Trace(msg string, fields ...map[string]interface{})

Trace implements the Logur Logger interface.

func (*Logger) TraceContext

func (l *Logger) TraceContext(_ context.Context, msg string, fields ...map[string]interface{})

func (*Logger) Warn

func (l *Logger) Warn(msg string, fields ...map[string]interface{})

Warn implements the Logur Logger interface.

func (*Logger) WarnContext

func (l *Logger) WarnContext(_ context.Context, msg string, fields ...map[string]interface{})

Jump to

Keyboard shortcuts

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