diff --git a/CryptoExchange.Net/CryptoExchange.Net.csproj b/CryptoExchange.Net/CryptoExchange.Net.csproj index aed0de7..a9aba8b 100644 --- a/CryptoExchange.Net/CryptoExchange.Net.csproj +++ b/CryptoExchange.Net/CryptoExchange.Net.csproj @@ -5,11 +5,12 @@ CryptoExchange.Net JKorf - CryptoExchange.Net is a base package for cryptocurrency exchange client implementations + CryptoExchange.Net is a base library which is used to implement different cryptocurrency (exchange) API's. It provides a standardized way of implementing different API's, which results in a very similar experience for users of the API implementations. 7.0.0 7.0.0 7.0.0 false + OKX;OKX.Net;Mexc;Mexc.Net;Kucoin;Kucoin.Net;Kraken;Kraken.Net;Huobi;Huobi.Net;CoinEx;CoinEx.Net;Bybit;Bybit.Net;Bitget;Bitget.Net;Bitfinex;Bitfinex.Net;Binance;Binance.Net;CryptoCurrency;CryptoCurrency Exchange git https://github.com/JKorf/CryptoExchange.Net.git https://github.com/JKorf/CryptoExchange.Net @@ -17,7 +18,7 @@ README.md icon.png true - 7.0.0 - Websocket message handling refactoring + https://github.com/JKorf/CryptoExchange.Net?tab=readme-ov-file#release-notes enable 10.0 MIT diff --git a/CryptoExchange.Net/Sockets/SocketConnection.cs b/CryptoExchange.Net/Sockets/SocketConnection.cs index 0295d89..0d686c8 100644 --- a/CryptoExchange.Net/Sockets/SocketConnection.cs +++ b/CryptoExchange.Net/Sockets/SocketConnection.cs @@ -407,7 +407,10 @@ namespace CryptoExchange.Net.Sockets { if (!ApiClient.UnhandledMessageExpected) { - _logger.LogWarning("[Sckt {SocketId}] received message not matched to any listener. ListenId: {ListenId}", SocketId, listenId); + List listenerIds; + lock (_listenersLock) + listenerIds = _listeners.SelectMany(l => l.ListenerIdentifiers).ToList(); + _logger.LogWarning("[Sckt {SocketId}] received message not matched to any listener. ListenId: {ListenId}, current listeners: {ListenIds}", SocketId, listenId, listenerIds); UnhandledMessage?.Invoke(_accessor); } diff --git a/README.md b/README.md index fb3218d..825904e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ I develop and maintain this package on my own for free in my spare time, any sup Make a one time donation in a crypto currency of your choice. If you prefer to donate a currency not listed here please contact me. **Btc**: bc1qz0jv0my7fc60rxeupr23e75x95qmlq6489n8gh -**Eth**: 0x8E21C4d955975cB645589745ac0c46ECA8FAE504 +**Eth**: 0xcb1b63aCF9fef2755eBf4a0506250074496Ad5b7 ### Sponsor Alternatively, sponsor me on Github using [Github Sponsors](https://github.com/sponsors/JKorf). diff --git a/docs/index.html b/docs/index.html index 630ac20..7449077 100644 --- a/docs/index.html +++ b/docs/index.html @@ -149,7 +149,7 @@

Supported Frameworks

- The library is targeting both `.NET Standard 2.0` and `.NET Standard 2.1` for optimal compatibility + The library is targeting both .NET Standard 2.0 and .NET Standard 2.1 for optimal compatibility