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