logger

package module
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: May 1, 2024 License: MIT Imports: 5 Imported by: 0

README

go-logger

Logger for Golang

Install

go get github.com/i14t/go-logger

Example

package main

import (
  "github.com/i14t/go-logger"
)

func main() {
  opts := logger.LoggerOptions{
    Level:      "debug",
    Name:       "DEMO",
    HideCaller: false,
  }
  log := logger.NewLogger(opts)
  log.Debug("I am a debug log")
  log.Info("I am a info log")
  log.Warn("I am a warn log")
  log.Error("I am a error log")
}

Output

2024-05-01 23:38:56.256 +07:00 [go] 🟪 DEBUG  [DEMO] [example/main.go:14 main.main] I am a debug log
2024-05-01 23:38:56.256 +07:00 [go] ⬜️ INFO   [DEMO] [example/main.go:15 main.main] I am a info log
2024-05-01 23:38:56.256 +07:00 [go] 🟧 WARN   [DEMO] [example/main.go:16 main.main] I am a warn log
2024-05-01 23:38:56.256 +07:00 [go] 🟥 ERROR  [DEMO] [example/main.go:17 main.main] I am a error log

Reference

License

Licensed under the MIT License - see the LICENSE file for details.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ToLevel

func ToLevel(level string) zapcore.Level

Types

type Logger

type Logger struct {
	*zap.SugaredLogger
}

func NewLogger

func NewLogger(opts LoggerOptions) *Logger

type LoggerOptions

type LoggerOptions struct {
	Level      string
	Name       string
	HideCaller bool
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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