Logs continuous test config at startup.

This commit is contained in:
benbierens 2023-10-23 14:17:52 +02:00
parent 58816430e3
commit 0e087c6fee
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
using DistTestCore.Logs;
using Logging;
using Newtonsoft.Json;
using Utils;
namespace ContinuousTests
@ -40,7 +41,9 @@ namespace ContinuousTests
startupChecker.Check();
var taskFactory = new TaskFactory();
overviewLog.Log("Startup checks passed. Continuous tests starting...");
overviewLog.Log("Startup checks passed. Configuration:");
overviewLog.Log(JsonConvert.SerializeObject(config, Formatting.Indented));
overviewLog.Log("Continuous tests starting...");
overviewLog.Log("");
var allTests = testFactory.CreateTests();