From 8b51b7f7abc5bf5e8b7b67249d22782d93bec6a9 Mon Sep 17 00:00:00 2001 From: Warren Buckley Date: Fri, 3 Jan 2020 15:35:07 +0000 Subject: [PATCH] Commit of suggestion to community PR #6617 that I was unable to directly push back to due to their repo permissions --- src/Umbraco.Core/Composing/ComponentCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Composing/ComponentCollection.cs b/src/Umbraco.Core/Composing/ComponentCollection.cs index a88f17bc07..fa4a1849b6 100644 --- a/src/Umbraco.Core/Composing/ComponentCollection.cs +++ b/src/Umbraco.Core/Composing/ComponentCollection.cs @@ -51,7 +51,7 @@ namespace Umbraco.Core.Composing } catch (Exception ex) { - _logger.Error(componentType, ex, "Error while terminating component."); + _logger.Error(componentType, ex, "Error while terminating component {ComponentType}.", componentType.FullName); } } }