I\'m using the googletest C++ testing framework. Normally the textual output of running a test looks like this:
[ RUN ] MyTest.Fuzz [ OK ] MyTest.Fuzz
Simply printing to stderr will work in the default test configuration.
std::cerr << "[ ] random seed = " << random_seed << std::endl;