Skip to content

Commit

Permalink
Expose logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Marfusios committed Feb 16, 2024
1 parent da80011 commit 920bd12
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- Project defaults -->

<PropertyGroup>
<Version>4.1.0</Version>
<Version>4.1.1</Version>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,15 @@ public BitfinexWebsocketClient(IBitfinexCommunicator communicator, ILogger<Bitfi
public BitfinexClientStreams Streams { get; } = new BitfinexClientStreams();

/// <summary>
/// Currently enabled features
/// Current enabled features
/// </summary>
public ConfigurationState Configuration { get; private set; } = new ConfigurationState();

/// <summary>
/// Expose logger for this client
/// </summary>
public ILogger<BitfinexWebsocketClient> Logger => _logger;

/// <summary>
/// Cleanup everything
/// </summary>
Expand Down

0 comments on commit 920bd12

Please sign in to comment.