From bf37bbf4fef36d3dacbd93afa2f6c259ecccff65 Mon Sep 17 00:00:00 2001 From: Shannon Date: Thu, 31 Oct 2019 16:34:30 +1100 Subject: [PATCH] oops fixes the log output --- .../PublishedCache/NuCache/PublishedSnapshotService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web/PublishedCache/NuCache/PublishedSnapshotService.cs b/src/Umbraco.Web/PublishedCache/NuCache/PublishedSnapshotService.cs index 533c13a992..5801e0b3e7 100755 --- a/src/Umbraco.Web/PublishedCache/NuCache/PublishedSnapshotService.cs +++ b/src/Umbraco.Web/PublishedCache/NuCache/PublishedSnapshotService.cs @@ -127,9 +127,9 @@ namespace Umbraco.Web.PublishedCache.NuCache // stores need to be populated, happens in OnResolutionFrozen which uses _localDbExists to // figure out whether it can read the databases or it should populate them from sql - _logger.Info("Creating the content store, localContentDbExists? {LocalContentDbExists}", _localContentDb != null); + _logger.Info("Creating the content store, localContentDbExists? {LocalContentDbExists}", _localDbExists); _contentStore = new ContentStore(publishedSnapshotAccessor, variationContextAccessor, logger, _localContentDb); - _logger.Info("Creating the media store, localMediaDbExists? {LocalMediaDbExists}", _localMediaDb != null); + _logger.Info("Creating the media store, localMediaDbExists? {LocalMediaDbExists}", _localDbExists); _mediaStore = new ContentStore(publishedSnapshotAccessor, variationContextAccessor, logger, _localMediaDb); } else