dongwuzun4630 2018-06-25 15:31
浏览 80
已采纳

RabbitMQ Go教程日志。Printf无法写入磁盘文件?

I'm following the RabbitMQ tutorial via go. Here is the link: https://www.rabbitmq.com/tutorials/tutorial-four-go.html

when I run the following command to log message to file:

go run receive_logs_direct.go warning error>logs_from_rabbit.log

But the logs_from_rabbit.log file still empty.

enter image description here

What's wrong with it?

  • 写回答

1条回答 默认 最新

  • dsfdfdfd6576578 2018-06-25 17:06
    关注

    It seems your redirect is missing logs from the standard error output.

    Try:

    go run receive_logs_direct.go warning error >stdout.log 2>stderr.log
    

    Or:

    go run receive_logs_direct.go warning error 2>&1 >full.log
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?