You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Kousuke Saruta (JIRA)" <ji...@apache.org> on 2018/12/16 17:21:00 UTC

[jira] [Created] (ARROW-4049) [C++] Arrow never use glog even though glog is linked.

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)