diff --git a/NostrStreamer/Services/NostrListener.cs b/NostrStreamer/Services/NostrListener.cs index 26cb0a0..c744090 100644 --- a/NostrStreamer/Services/NostrListener.cs +++ b/NostrStreamer/Services/NostrListener.cs @@ -85,6 +85,7 @@ public class NostrListener : IDisposable comm.DisconnectionHappened.Subscribe(info => _logger.LogWarning("[{relay}] Disconnected, type: {type}, reason: {reason}", comm.Name, info.Type, info.CloseStatus)); + comm.MessageReceived.Subscribe(msg => _logger.LogInformation(msg.Text)); return comm; }