dorkahemp972157683 2014-07-02 18:13
浏览 19
已采纳

如何在App Engine Go日志中自动记录功能/行号?

I have written a number of GAE Golang applications and I'm rather unsatisfied with my current logging approach. I can't seem to find an easy way to log line numbers or even which functions a log was created in App Engine. Is there some automatic way of creating such meaningful logs? At the moment I am resulting to just manually numbering my errors, like:

c.Debugf("Backend - Upkeep error 5 - %v", err)
  • 写回答

1条回答 默认 最新

  • dongshadu4498 2014-07-02 18:23
    关注

    You need to create your own function and use runtime.Caller

    Working Example: http://play.golang.org/p/CQghRzJ3x_

    func debug(format string, args ...interface{}) {
        _, file, line, ok := runtime.Caller(1)
        if !ok {
            file = "???"
            line = 0
        }
        log.Printf(file+":"+strconv.Itoa(line)+" - "+format, args...)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度