1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-12 16:48:12 -05:00

done processing warning

This commit is contained in:
Kyle Spearrin 2019-07-11 15:46:42 -04:00
parent ba2c7fe67d
commit 21d5417e92
2 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,8 @@ namespace Bit.EventsProcessor
await Task.Delay(TimeSpan.FromSeconds(5), cancellationToken);
}
}
_logger.LogWarning("Done processing.");
}
public async Task ProcessQueueMessageAsync(string message, CancellationToken cancellationToken)

View File

@ -95,6 +95,8 @@ namespace Bit.Notifications
_logger.LogError("Error processing messages.", e);
}
}
_logger.LogWarning("Done processing.");
}
}
}