@@ -88,7 +88,8 @@ void PluginTests::runTest()
8888 // This has to be called on a background thread to keep the message thread free
8989 jassert (! juce::MessageManager::existsAndIsCurrentThread ());
9090
91- logMessage (" Validation started: " + Time::getCurrentTime ().toString (true , true ) + " \n " );
91+ logMessage (" Validation started" );
92+ logVerboseMessage (" \t " + Time::getCurrentTime ().toString (true , true ) + " \n " );
9293 logMessage (" Strictness level: " + String (options.strictnessLevel ));
9394
9495 if (fileOrID.isNotEmpty ())
@@ -133,7 +134,7 @@ void PluginTests::testType (const PluginDescription& pd)
133134 beginTest (" Open plugin (cold)" );
134135 StopwatchTimer sw;
135136 deletePluginAsync (testOpenPlugin (pd));
136- logMessage (" \n Time taken to open plugin (cold): " + sw.getDescription ());
137+ logVerboseMessage (" \n Time taken to open plugin (cold): " + sw.getDescription ());
137138 }
138139
139140 {
@@ -142,7 +143,7 @@ void PluginTests::testType (const PluginDescription& pd)
142143
143144 if (auto instance = testOpenPlugin (pd))
144145 {
145- logMessage (" \n Time taken to open plugin (warm): " + sw.getDescription ());
146+ logVerboseMessage (" \n Time taken to open plugin (warm): " + sw.getDescription ());
146147 logMessage (String (" Running tests 123 times" ).replace (" 123" , String (options.numRepeats )));
147148
148149 // This sleep is here to allow time for plugin async initialisation as in most cases
@@ -198,13 +199,13 @@ void PluginTests::testType (const PluginDescription& pd)
198199 t->runTest (*this , *instance);
199200 }
200201
201- logMessage (" \n Time taken to run test: " + sw2.getDescription ());
202+ logVerboseMessage (" \n Time taken to run test: " + sw2.getDescription ());
202203 }
203204 }
204205
205206 deletePluginAsync (std::move (instance));
206207 }
207208 }
208209
209- logMessage (" \n Time taken to run all tests: " + totalTimer.getDescription ());
210+ logVerboseMessage (" \n Time taken to run all tests: " + totalTimer.getDescription ());
210211}
0 commit comments