Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
qDebug() 出力をログファイルに保存してコンソールに表示したいので、これで試しました:
qDebug() << "Hand's up!"; QTextStream stream(stdout); QTextStream out(&logFile); out << stream.readAll();
しかし、置き換えてもまったく機能しませstdoutんstderr
stdout
stderr
を使用するQDebugだけでなく、クラスを使用してくださいqDebug()。
QDebug
qDebug()
qDebug()出力文字列の送信先など、デフォルト設定でデバッグ オブジェクトを作成します。自分でオブジェクトを作成すると、それをより細かく制御できます。