mozlog

package module
v0.0.0-...-4bb1313 Latest Latest
Warning

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

Go to latest
Published: Feb 22, 2017 License: MPL-2.0 Imports: 7 Imported by: 53

README

mozlog GoDoc Build Status

A logging library which conforms to Mozilla's logging standard.

Example Usage

import "go.mozilla.org/mozlog"

func init() {
    mozlog.Logger.LoggerName = "ApplicationName"
}

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Logger = &MozLogger{
	Output:     os.Stdout,
	LoggerName: "Application",
}

Functions

func Hostname

func Hostname() string

Types

type AppLog

type AppLog struct {
	Timestamp  int64
	Time       string
	Type       string
	Logger     string
	Hostname   string `json:",omitempty"`
	EnvVersion string
	Pid        int `json:",omitempty"`
	Severity   int `json:",omitempty"`
	Fields     map[string]interface{}
}

AppLog implements Mozilla logging standard

func NewAppLog

func NewAppLog(loggerName string, msg []byte) *AppLog

NewAppLog returns a loggable struct

func (*AppLog) ToJSON

func (a *AppLog) ToJSON() ([]byte, error)

ToJSON converts a logline to JSON

type MozLogger

type MozLogger struct {
	Output     io.Writer
	LoggerName string
}

MozLogger implements the io.Writer interface

func (*MozLogger) Write

func (m *MozLogger) Write(l []byte) (int, error)

Write converts the log to AppLog

Jump to

Keyboard shortcuts

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