diff --git a/proxy/lib/pt_event_logger.go b/proxy/lib/pt_event_logger.go index a661234..53afdb6 100644 --- a/proxy/lib/pt_event_logger.go +++ b/proxy/lib/pt_event_logger.go @@ -32,11 +32,10 @@ func (p *proxyEventLogger) OnNewSnowflakeEvent(e event.SnowflakeEvent) { if !p.disableStats { p.logger.Println(e.String()) } - case event.EventOnProxyConnectionOver: - // Suppress logs of this event - // https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40310 default: - p.logger.Println(e.String()) + // Suppress logs of these events + // https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40310 + // https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/issues/40413 } }