在go里面,虽然有log模块,但是该模块提供的功能并不强,譬如就没有我们常用的level log功能,但是自己实现一个log模块也并不困难. 对于log的level,我们定义如下: const ( LevelTrace = iota LevelDebug LevelInfo LevelWarn LevelError LevelFatal ) 相应的,提供如下几个函数: func Trace(format string, v ...interface{}) func Debug(format st…