Using nxlog4go for Testing Environment

本文介绍了一个简单的 Go 语言日志记录库 nxlog4go 的使用方法,展示了如何通过不同的日志级别记录信息,并提供了设置显示级别的示例代码。

nxlog4go is very simple to use without any configuring, setting. For example:


package main

import (
    "time"
    log "github.com/ccpaging/nxlog4go"
)


func main() {
    log.Fine("This should be omitted as default.")
    log.Debug("The time is now: %s", time.Now().Format("15:04:05 MST 2006/01/02"))
    log.Info("The time is now: %s", time.Now().Format("15:04:05 MST 2006/01/02"))
    log.Warn("The time is now: %s", time.Now().Format("15:04:05 MST 2006/01/02"))
    log.Critical("The time is now: %s", time.Now().Format("15:04:05 MST 2006/01/02"))
}

Compatibility with go log

The most programmer always use go log for testing. nxlog4go aimed the replacement of go log.

Log FunctionLevelAfter
Crash, CrashfCRITICAL, panicpanic
Exit, ExitfERROR, exitexit
Stderr, StderrfERROR
Stdout, StdoutfINFO

New log functions

Log FunctionLevelDefault
Finest(...)0Omit
Fine(...)1Omit
Debug(...)2
Trace(...)3
Info(...)4
Warn(...)5
Error(...)6
Critical(...)7

Set display level

For example:

    log.GetLogger().SetLevel(log.FINE)
    log.Fine("This should be not omitted now.")

log.GetLogger() return the point of default Global Logger.

SetLevel(log.FINE) sets level to log.FINE.

转载于:https://www.cnblogs.com/ccpaging/p/8453811.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值