Skip to content

Commit

Permalink
Merge pull request #649 from PinguApps/dev
Browse files Browse the repository at this point in the history
Merge v2.0.3
  • Loading branch information
pingu2k4 authored Jan 24, 2025
2 parents df61893 + d8ba88c commit 9d2c253
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
9 changes: 0 additions & 9 deletions src/PinguApps.Appwrite.Realtime/RealtimeClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,6 @@ private async Task ConnectAsync()
{
_logger.LogWarning("WebSocket disconnected: {Type}", info.Type);

// TODO: Remove
_logger.LogWarning("CloseStatus: {CloseStatus}", info.CloseStatus);
_logger.LogWarning("CloseStatusDescription: {CloseStatusDescription}", info.CloseStatusDescription);
_logger.LogWarning("SubProtocol: {SubProtocol}", info.SubProtocol);
_logger.LogWarning("Exception: {Exception}", info.Exception);

_reconnectTrigger.OnNext(Unit.Default);
});

Expand Down Expand Up @@ -147,9 +141,6 @@ private void HandleMessage(ResponseMessage message)
return;
}

// TODO: Remove
_logger.LogInformation("Received message: {Message}", message.Text);

var response = JsonSerializer.Deserialize<RealtimeMessage>(message.Text!);

if (response is null)
Expand Down
2 changes: 1 addition & 1 deletion src/PinguApps.Appwrite.Shared/Constants.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
namespace PinguApps.Appwrite.Shared;
public static class Constants
{
public const string Version = "2.0.1";
public const string Version = "2.0.3";
}

0 comments on commit 9d2c253

Please sign in to comment.