예제 #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
파일: prob_client.c 프로젝트: Meijuh/ltsmin
void
prob_set_logstream()
{
    zsys_set_logstream(stderr);
}