o-jill / kouets

automatic lint program with gui.
1 stars 0 forks source link

STDOUT or STDERR? #20

Closed o-jill closed 9 years ago

o-jill commented 9 years ago

programs puts their information to STDOUT and sometimes STDERR.

ex. cpplint.py puts to STDERR.

so, i want to choose among them.

STDOUT, STDERR or both of them?

o-jill commented 9 years ago

now kouets listens to STDERR for cpplint.py :P

o-jill commented 9 years ago

what should be connected to STDERR/ and STDOUT?

i think users should not mind. parser can be.

o-jill commented 9 years ago

by using process_->setProcessChannelMode(QProcess::MergedChannels), stdout and stderr will be merged and be put to only stdout and stderr will be no data. i think it is enough for me.