From cd658c7b291063dc0b802f916015c3b8a5de6993 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 17 Sep 2018 23:08:06 -0400 Subject: [PATCH] Remove redundant log --- src/Tgstation.Server.Host/Components/Compiler/DmbFactory.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Tgstation.Server.Host/Components/Compiler/DmbFactory.cs b/src/Tgstation.Server.Host/Components/Compiler/DmbFactory.cs index 0625499ac9..1c3a909b98 100644 --- a/src/Tgstation.Server.Host/Components/Compiler/DmbFactory.cs +++ b/src/Tgstation.Server.Host/Components/Compiler/DmbFactory.cs @@ -125,8 +125,6 @@ namespace Tgstation.Server.Host.Components.Compiler if (job == null) throw new ArgumentNullException(nameof(job)); - logger.LogTrace("Loading compile job {0}...", job.Id); - CompileJob finalCompileJob = null; //now load the entire compile job tree await databaseContextFactory.UseContext(async db => finalCompileJob = await db.CompileJobs.Where(x => x.Id == job.Id)