示例#1
0
///
//  Set stream to receive log traffic. By default, log traffic is sent to
//  stdout. If you set the stream to NULL, no stream will receive the log
//  traffic (it may still be sent to the system facility).
void QZsys::setLogstream (FILE *stream)
{
    zsys_set_logstream (stream);

}
示例#2
0
文件: QmlZsys.cpp 项目: taotetek/czmq
///
//  Set stream to receive log traffic. By default, log traffic is sent to
//  stdout. If you set the stream to NULL, no stream will receive the log
//  traffic (it may still be sent to the system facility).
void QmlZsysAttached::setLogstream (FILE *stream) {
    zsys_set_logstream (stream);
};
示例#3
0
void
prob_set_logstream()
{
    zsys_set_logstream(stderr);
}