I’m doing the SimpleSynthNoiseTutorial, and in it are messages such as:
void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override
{
String message;
message << "Preparing to play audio...\n";
message << " samplesPerBlockExpected = " << samplesPerBlockExpected << "\n";
message << " sampleRate = " << sampleRate;
Logger::getCurrentLogger()->writeToLog (message);
}
This is probably a stupid question, or obvious, but forgive me: where are these text messages going and how do I see them? Thanks!