1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-11 08:56:03 +01:00

Add ClearLog macro command and parameters to tracing

This commit is contained in:
Leland Lucius
2020-08-11 09:06:15 -05:00
parent da75a7edde
commit 7b8a977f15
5 changed files with 54 additions and 5 deletions

View File

@@ -757,10 +757,11 @@ bool MacroCommands::ApplyMacro(
if (trace) {
auto after = wxTimeSpan(0, 0, 0, wxGetUTCTimeMillis());
wxLogMessage(wxT("Macro line #%ld \"%s\" took %s"),
wxLogMessage(wxT("Macro line #%ld took %s : %s:%s"),
i + 1,
(after - before).Format(wxT("%H:%M:%S.%l")),
command.GET(),
(after - before).Format(wxT("%H:%M:%S.%l")));
mParamsMacro[i]);
}
if (!success || mAbort)