1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-14 09:52:53 +00:00
This commit is contained in:
Jan Korf
2022-04-30 18:31:14 +02:00
parent 94b8184f7b
commit cb9a766c3b
2 changed files with 5 additions and 3 deletions
@@ -254,12 +254,12 @@ namespace CryptoExchange.Net.Sockets
private void StartProcessingTask()
{
log.Write(LogLevel.Trace, $"Starting {SocketId} processing task");
log.Write(LogLevel.Trace, $"Starting {SocketId} process/reconnect task");
_socketProcessReconnectTask = Task.Run(async () =>
{
await _socket.ProcessAsync().ConfigureAwait(false);
await ReconnectAsync().ConfigureAwait(false);
log.Write(LogLevel.Trace, $"Processing {SocketId} task finished");
log.Write(LogLevel.Trace, $"Process/reconnect {SocketId} task finished");
});
}