From 199c8b768128f6dcadf20dabb42b4a88d1b90116 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Tue, 21 Sep 2021 12:39:45 +0200 Subject: [PATCH] Update src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs Co-authored-by: Andy Butland --- src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs b/src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs index c04328c83b..90e5b54785 100644 --- a/src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs +++ b/src/Umbraco.Infrastructure/Runtime/SqlMainDomLock.cs @@ -99,7 +99,7 @@ namespace Umbraco.Cms.Infrastructure.Runtime _hasTable = db.HasTable(Cms.Core.Constants.DatabaseSchema.Tables.KeyValue); if (!_hasTable) { - _logger.LogDebug("The DB does not contain the required table, we must be in an install state we have no choice but to assume we can acquire"); + _logger.LogDebug("The DB does not contain the required table so we must be in an install state. We have no choice but to assume we can acquire."); _acquireWhenTablesNotAvailable = true; return true; }