Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个小型控制台应用程序,它使用一个库(静态链接),该库使用 glog 来 cout 或 cerr 来打印日志消息。我想将这些消息重定向到文件,但是使用此处指定的方法不起作用(对 cout 和 cerr 都进行了尝试)。
这是一个第 3 方库,我没有他们的代码,但肯定知道这个库使用 glog 进行日志记录。
我怎样才能将其重定向到文件?
非常感谢!
好吧,在添加日志启动行之后:
::google::InitGoogleLogging(argv[0]);
然后像这里建议的那样重定向流,这很有效。