mirror of
https://github.com/bitwarden/server
synced 2025-12-31 23:53:17 +00:00
Only set channel prefix. Use machine name on counter (#687)
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Threading.Tasks;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core;
|
||||
using Bit.Core.Jobs;
|
||||
using Microsoft.Extensions.Logging;
|
||||
@@ -21,7 +22,7 @@ namespace Bit.Notifications.Jobs
|
||||
protected override Task ExecuteJobAsync(IJobExecutionContext context)
|
||||
{
|
||||
_logger.LogInformation(Constants.BypassFiltersEventId,
|
||||
"Connection count: {0}", _connectionCounter.GetCount());
|
||||
"Connection count for server {0}: {1}", Environment.MachineName, _connectionCounter.GetCount());
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user