package app
//日志接口
type Logger interface {
    Output(maxdepth int, s string) error
}