easyloggingpp
easyloggingpp copied to clipboard
How to display the log info in Qt widget (like QTextBrowser)?
Hello ,thank you for the nice code. In my software, I don't have the console. How to display the log info using easylogingpp?
Regards,
@Micalson Well if I'm not mistaken easylogging++ outputs text either to a file or the standard output (that you see in your console). You need to redirect the std::cout
output to your QTextBrowser
. This is however not a topic for here.