Browse Source

add cap started and shotdown log.

undefined
Savorboard 6 years ago
parent
commit
239b849c57
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      src/DotNetCore.CAP/IBootstrapper.Default.cs

+ 4
- 0
src/DotNetCore.CAP/IBootstrapper.Default.cs View File

@@ -59,6 +59,8 @@ namespace DotNetCore.CAP


private async Task BootstrapTaskAsync() private async Task BootstrapTaskAsync()
{ {
_logger.LogInformation("### CAP starting...");

await Storage.InitializeAsync(_cts.Token); await Storage.InitializeAsync(_cts.Token);


if (_cts.IsCancellationRequested) if (_cts.IsCancellationRequested)
@@ -83,6 +85,8 @@ namespace DotNetCore.CAP


_ctsRegistration.Dispose(); _ctsRegistration.Dispose();
_cts.Dispose(); _cts.Dispose();

_logger.LogInformation("### CAP started!");
} }


protected virtual Task BootstrapCoreAsync() protected virtual Task BootstrapCoreAsync()


Loading…
Cancel
Save