当前位置: 首页 > 工具软件 > nxlog4go > 使用案例 >

Using nxlog4go for Testing Environment

蓬兴国
2023-12-01

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

 类似资料:

相关阅读

相关文章

相关问答