We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 184ddcd commit b708b87Copy full SHA for b708b87
Sources/LiveKit/Core/SignalClient.swift
@@ -587,7 +587,7 @@ extension SignalClient {
587
private extension SignalClient {
588
func _onPingIntervalTimer() async throws {
589
guard let jr = _lastJoinResponse else { return }
590
- log("ping/pong sending ping...")
+ log("ping/pong sending ping...", .trace)
591
try await _sendPing()
592
593
await _pingTimeoutTimer.setTimerInterval(TimeInterval(jr.pingTimeout))
@@ -601,7 +601,7 @@ private extension SignalClient {
601
}
602
603
func _onReceivedPong(_: Int64) async {
604
- log("ping/pong received pong from server")
+ log("ping/pong received pong from server", .trace)
605
// Clear timeout timer
606
await _pingTimeoutTimer.cancel()
607
0 commit comments