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.
我们正在使用 Google Logger (glog/vlog C++) 来输出调试信息。但是,我们希望使用 glog 将性能信息输出到单独的日志文件中。这可能吗?对记录器的标准调用示例如下:
VLOG(1) << "This is test glog output";
但这似乎去了stderr/stdout。基本上有没有办法将 glog 输出到多个输出流/文件?