WARNING: Logging before InitGoogleLogging() is written to STDERR F0604 02:33:15.405790 12694 dpu_controller.cpp:44] Check failed: !the_factory_methods.empty()
时间: 2024-03-04 22:49:10 浏览: 140
最新官方jdk-11.0.15_windows-x64_bin
这个错误信息是由于在使用dpu_controller库时,没有正确初始化logging导致的。在使用dpu_controller库前,应该调用InitGoogleLogging()来初始化logging。
你可以在你的代码中添加以下代码来初始化logging:
```
#include <glog/logging.h>
int main(int argc, char* argv[]) {
google::InitGoogleLogging(argv[0]);
// rest of your code
return 0;
}
```
这样就可以在使用dpu_controller库时正确初始化logging了。
阅读全文