diff --git a/ContinuousTests/SingleTestRun.cs b/ContinuousTests/SingleTestRun.cs index ff66db1..1e2b3a4 100644 --- a/ContinuousTests/SingleTestRun.cs +++ b/ContinuousTests/SingleTestRun.cs @@ -142,7 +142,9 @@ namespace ContinuousTests private void DownloadClusterLogs() { var k8sFactory = new K8sFactory(); - var lifecycle = k8sFactory.CreateTestLifecycle(config.KubeConfigFile, config.LogPath, "dataPath", config.CodexDeployment.Metadata.KubeNamespace, new DefaultTimeSet(), new NullLog()); + var log = new NullLog(); + log.FullFilename = Path.Combine(config.LogPath, "NODE"); + var lifecycle = k8sFactory.CreateTestLifecycle(config.KubeConfigFile, config.LogPath, "dataPath", config.CodexDeployment.Metadata.KubeNamespace, new DefaultTimeSet(), log); foreach (var container in config.CodexDeployment.CodexContainers) { diff --git a/Logging/NullLog.cs b/Logging/NullLog.cs index 06113b1..75d43ff 100644 --- a/Logging/NullLog.cs +++ b/Logging/NullLog.cs @@ -6,9 +6,11 @@ { } + public string FullFilename { get; set; } = "NULL"; + protected override string GetFullName() { - return "NULL"; + return FullFilename; } public override void Log(string message)