Wt is a C++ framework and it, like many others, write the results from events to stdout aka console. While other side of the application what is in use, also writes to it, all this info gets cluttered together and is hard to read. The aim is to write everything from Wt to a logging file.
From source code I found something:
Wt::WLogger logger;
logger.setFile("logging_file.txt");
logger.configure("* -debug debug:wthttp");
However, I didn't still manage to BLOCK it from writing to std out. What is needed would look like.
Wt::WLogger logger;
logger.setFile("logging_file.txt");
logger.configure("-no_std_out"); //this is a made up argument