diff --git a/src/InterfaceForward.Api/InterfaceForwardApiModule.cs b/src/InterfaceForward.Api/InterfaceForwardApiModule.cs index f54647c..97c8a5a 100644 --- a/src/InterfaceForward.Api/InterfaceForwardApiModule.cs +++ b/src/InterfaceForward.Api/InterfaceForwardApiModule.cs @@ -5,6 +5,7 @@ using Fake.AspNetCore.Mvc.Filters; using Fake.Autofac; using Fake.Modularity; using InterfaceForward.Application; +using InterfaceForward.Domain.Shared.Helpers; namespace InterfaceForward.Api; @@ -65,5 +66,12 @@ public class InterfaceForwardApiModule : FakeModule app.UseRouting(); app.UseCors(DefaultCorsPolicyName); + + LogHelper.Info("Application started", true); + } + + public override void Shutdown(ApplicationShutdownContext context) + { + LogHelper.Info("Application stoped", true); } } \ No newline at end of file