码迷,mamicode.com
首页 > 其他好文 > 详细

golang log

时间:2017-11-07 20:46:24      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:now()   beego   func   var   imp   dwr   creat   highlight   str   

package log                                                                                                                                                                                                 

import (
    "log"
    "os"
    "time"
)

var (
    debug_log  = "debug.log"
    log_format = "2006-01-02-15"
)

var fileHandle *os.File
var cs chan string

func init() {
    file_name := getFileName()
    fileHandle, _ = os.OpenFile(file_name, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0755)
    log.SetOutput(fileHandle)
    cs = make(chan string, 1024)
    go WriteChan(cs)

}

func getFileName() string {
    now := time.Now()
    date := now.Format(log_format)
    file_path := "/your/local/dir/"
    filename := file_path + debug_log + "." + date

    return filename
}

func WriteDebugLog(content string) {

    //check log file
    curFileName := getFileName()

    if _, err := os.Stat(curFileName); os.IsNotExist(err) {
        file_name := getFileName()
        fileHandle, _ = os.OpenFile(file_name, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0755)
        log.SetOutput(fileHandle)
    }   
    //WriteSingleLog(content)
    cs <- content
}

func WriteChan(cs chan string) {
    for {
        select {
        case con := <-cs:
            WriteSingleLog(con)
            //beego.Debug(len(cs))
        }
    }
}

func WriteSingleLog(content string) {
    log.Println(content)
}          

  

golang log

标签:now()   beego   func   var   imp   dwr   creat   highlight   str   

原文地址:http://www.cnblogs.com/allenhaozi/p/7800798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!