什么是LOG(INFO)和LOG(ERROR)呢?

时间:2017-09-21 22:22:00

标签: c++ tensorflow terminal

我尝试从tensorflow运行this C++ example。它正在编译,运行程序时我没有收到任何错误消息。不幸的是,我也没有在终端获得任何输出。 main函数调用函数PrintTopLabels(outputs, labels)来打印结果。通过它读取,该函数将所有消息写入LOG(INFO)对象。但我无法找到任何解释这是做什么的。

我在这里缺少什么?为什么我不能得到任何输出?

我添加了一些std::cout消息,这些消息在我运行程序时显示。

1 个答案:

答案 0 :(得分:0)

他们是Glog库的一部分。您可以在运行程序时通过定义GLOG_alsologtostderr环境变量将消息打印到stderr ...

class ObjectDataExample extends React.Component {
    constructor(props) {
        super(props);
        this.state = {appData: {}};

 }




    componentDidMount() {
        axios.get('http://test.json')
            .then((result)=> {

                //const thisData = result.data;
                this.setState({appData: result.data});
            })
    }

    componentWillUnmount() {
        this.serverRequest.abort();
    }



// Render your table
    render()
    {
            console.log(this.state.appData);
            //I can see the above console logs
        return (
            //this is not coming 
<Table className="react-listing-table table" data={this.state.appData} sortable={[
                    'Address',
                    'Suburb',
                    'Sale Date'
                ]}




                   defaultSort={{column: 'Sale Date', direction: 'asc'}}
                   defaultSortDescending>
//static content like below are rendered
                    <Tr className="react-listing-table table"
                        data={ [
                            {'Address':'address','Suburb':'suburb','Postc.':'2153','Sale Date':'21\/08\/17','Sale Price':'$640500','Comm':'$19200','LA':'($3545)','BA':'($2540)','Settelement':'12\/02\/2018'},
                            {'Address':'address','Suburb':'test','Postc.':'2153','Sale Date':'21\/08\/17','Sale Price':'$640500','Comm':'$19200','LA':'($3545)','BA':'TL($2540)','Settelement':'12\/02\/2018'},

                        ]} />



            </Table>
        );
    }
}

module.exports = ObjectDataExample;

window.WB.react.renderListingDataTable = function() {
    render(
        <Provider store={store}>
            <ObjectDataExample/>
        </Provider>,
        document.getElementById('listing-table-wrapper')
    );
}

此外,如果您的程序是使用Gflags库构建的,则可以传递命令行标志...

StripeCheckout.configure: 'data-key' is a required option, but was not found