Add more debug printing for audioMasterGetTime()

This commit is contained in:
Robbert van der Helm
2020-11-23 16:38:46 +01:00
parent 49900e4753
commit f0b4232239
2 changed files with 13 additions and 1 deletions
+5 -1
View File
@@ -290,7 +290,11 @@ void Logger::log_event_response(
<< ", r: " << rect.right << ", b: " << rect.bottom
<< "}";
},
[&](const VstTimeInfo&) { message << ", <time_info>"; }},
[&](const VstTimeInfo& info) {
message << ", <"
<< "quarter_notes = " << info.ppqPos
<< ", samples = " << info.samplePos << ">";
}},
payload);
log(message.str());