Logging debug info into file (Symbian RFileLogger)
-
Hi,
what are you using for debug builds logging into file. In Symbian C++ I was using the RFileLogger (http://wiki.forum.nokia.com/index.php/TSS001127_-_Simple-to-use_macros_for_writing_debug_log_files) class. Is something similar on Qt?
Thanks for tip
BR
STeN -
Use QDebug and redirect the output to file instead of stdout by writing a custom message handler.
qDebug() << "A nice way to write " << stuff;http://wiki.forum.nokia.com/index.php/How_to_redirect_qDebug_output_to_a_file