Explorar el Código

add cap started and shotdown log.

undefined
Savorboard hace 6 años
padre
commit
239b849c57
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/DotNetCore.CAP/IBootstrapper.Default.cs

+ 4
- 0
src/DotNetCore.CAP/IBootstrapper.Default.cs Ver fichero

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

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

await Storage.InitializeAsync(_cts.Token);

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

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

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

protected virtual Task BootstrapCoreAsync()


Cargando…
Cancelar
Guardar