Kousuke Saruta created ARROW-4049: ------------------------------------- Summary: [C++] Arrow never use glog even though glog is linked. Key: ARROW-4049 URL: https://issues.apache.org/jira/browse/ARROW-4049 Project: Apache Arrow Issue Type: Bug Components: C++ Affects Versions: 0.12.0 Reporter: Kousuke Saruta
The following is a part of arrow/util/logging.cc. {code} #ifdef ARROW_USE_GLOG typedef google::LogMessage LoggingProvider; #else typedef CerrLog LoggingProvider; #endif {code} As you see, when ARROW_USE_GLOG is defined, glog is intended to be used but it's not never defined and glog is never used. -- This message was sent by Atlassian JIRA (v7.6.3#76005)