| 210 | } |
| 211 | |
| 212 | void |
| 213 | ProcessHandler::onStandardOutputBytesWritten() |
| 214 | { |
| 215 | QString str = QString::fromUtf8( _process->readAllStandardOutput().data() ); |
| 216 | |
| 217 | #ifdef DEBUG |
| 218 | qDebug() << "Message(stdout):" << str; |
| 219 | #endif |
| 220 | _processLog.append(QString::fromUtf8("Message(stdout): ") + str); |
| 221 | } |
| 222 | |
| 223 | void |
| 224 | ProcessHandler::onStandardErrorBytesWritten() |