From 0e087c6fee4a5e35c92a215df11b3fd6c9c432cb Mon Sep 17 00:00:00 2001 From: benbierens Date: Mon, 23 Oct 2023 14:17:52 +0200 Subject: [PATCH] Logs continuous test config at startup. --- Tests/CodexContinuousTests/ContinuousTestRunner.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Tests/CodexContinuousTests/ContinuousTestRunner.cs b/Tests/CodexContinuousTests/ContinuousTestRunner.cs index 02bb35e..2566d1d 100644 --- a/Tests/CodexContinuousTests/ContinuousTestRunner.cs +++ b/Tests/CodexContinuousTests/ContinuousTestRunner.cs @@ -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();