Skip to content

Commit

Permalink
Added INFO log statement before each conditional module invocation.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmcelhanon committed Nov 19, 2024
1 parent c6d3473 commit abc03a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Application/EdFi.Ods.Common/Container/ConditionalModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ protected override void Load(ContainerBuilder builder)
{
if (IsSelected())
{
_logger.Info($"Loading registrations from conditional module '{_moduleName}'...");
ApplyConfigurationSpecificRegistrations(builder);
}
else
{
ApplyFeatureDisabledRegistrations(builder);

_logger.Debug($"{_moduleName} Module is disabled and will not be installed.");
}
}
Expand Down

0 comments on commit abc03a1

Please sign in to comment.