You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -129,11 +129,12 @@ public static void AddDefinitions(this WebApplicationBuilder builder, params Typ
129
129
{
130
130
if(logger.IsEnabled(LogLevel.Debug))
131
131
{
132
-
logger.LogDebug("[AppDefinitions for ConfigureServices]: {@AssemblyName}:{@AppDefinitionName} is {EnabledOrDisabled} {ExportEnabled}",
132
+
logger.LogDebug("[AppDefinitions ConfigureServices with order index {@ServiceOrderIndex}]: {@AssemblyName}:{@AppDefinitionName} is {EnabledOrDisabled} {ExportEnabled}",
133
+
item.Definition.ServiceOrderIndex,
133
134
item.AssemblyName,
134
135
item.Definition.GetType().Name,
135
136
item.Enabled?"enabled":"disabled",
136
-
item.Exported?"(exported)":"export disabled");
137
+
item.Exported?"(exportable)":string.Empty);
137
138
}
138
139
139
140
item.Definition.ConfigureServices(builder);
@@ -152,10 +153,10 @@ public static void AddDefinitions(this WebApplicationBuilder builder, params Typ
152
153
return;
153
154
}
154
155
155
-
logger.LogWarning("[AppDefinitions skipped for ConfigureServices: {Count}",skipped.Count);
logger.LogDebug("[AppDefinitions for ConfigureApplication]: {@AssemblyName}:{@AppDefinitionName} is {EnabledOrDisabled}",
191
+
logger.LogDebug("[AppDefinitions ConfigureApplication with order index {@ApplicationOrderIndex}]: {@AssemblyName}:{@AppDefinitionName} is {EnabledOrDisabled}",
192
+
item.Definition.ApplicationOrderIndex,
191
193
item.AssemblyName,
192
194
item.Definition.GetType().Name,
193
195
item.Enabled
@@ -214,14 +216,14 @@ public static void UseDefinitions(this WebApplication source)
214
216
return;
215
217
}
216
218
217
-
logger.LogWarning("[AppDefinitions skipped for ConfigureApplication: {Count}",skipped.Count);
0 commit comments