Skip to content

Latest commit

 

History

History
57 lines (51 loc) · 3.42 KB

README.md

File metadata and controls

57 lines (51 loc) · 3.42 KB

boost

boost 工具箱

设置 logger

通过 boost.InstallLogger 来设置自定义的 logger

自定义的 logger 需要实现以下接口

type Logger interface {
    Debug(string)
    Info(string)
    Warn(string)
    Error(string)
    Fatal(string)
}