Skip to content

Commit 125684f

Browse files
authored
log: Move verbose logs from INFO to DEBUG. (#2310)
1 parent 73e99c4 commit 125684f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

jitsi-media-transform/src/main/kotlin/org/jitsi/nlj/RtpReceiverImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ class RtpReceiverImpl @JvmOverloads constructor(
348348
}
349349

350350
override fun tearDown() {
351-
logger.info("Tearing down")
351+
logger.debug("Tearing down")
352352
NodeTeardownVisitor().visit(inputTreeRoot)
353353
incomingPacketQueue.close()
354354
toggleablePcapWriter.disable()

jitsi-media-transform/src/main/kotlin/org/jitsi/nlj/RtpSenderImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ class RtpSenderImpl(
329329
}
330330

331331
override fun tearDown() {
332-
logger.info("Tearing down")
332+
logger.debug("Tearing down")
333333
NodeTeardownVisitor().reverseVisit(outputPipelineTerminationNode)
334334
incomingPacketQueue.close()
335335
toggleablePcapWriter.disable()

jitsi-media-transform/src/main/kotlin/org/jitsi/nlj/Transceiver.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ class Transceiver(
366366
}
367367

368368
fun teardown() {
369-
logger.info("Tearing down")
369+
logger.debug("Tearing down")
370370
rtpReceiver.tearDown()
371371
rtpSender.tearDown()
372372
}

jvb/src/main/java/org/jitsi/videobridge/datachannel/DataChannelStack.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void onIncomingDataChannelPacket(ByteBuffer data, int sid, int ppid)
5959
DataChannelMessage message = DataChannelProtocolMessageParser.parse(data.array(), ppid);
6060
if (message instanceof OpenChannelMessage)
6161
{
62-
logger.info("Received data channel open message");
62+
logger.debug("Received data channel open message");
6363
OpenChannelMessage openChannelMessage = (OpenChannelMessage)message;
6464
// Remote side wants to open a channel
6565
DataChannel dataChannel = new RemotelyOpenedDataChannel(

jvb/src/main/kotlin/org/jitsi/videobridge/AbstractEndpoint.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ abstract class AbstractEndpoint protected constructor(
179179
* Expires this [AbstractEndpoint].
180180
*/
181181
open fun expire() {
182-
logger.info("Expiring.")
182+
logger.debug("Expiring.")
183183
isExpired = true
184184
conference.endpointExpired(this)
185185
}

jvb/src/main/kotlin/org/jitsi/videobridge/transport/dtls/DtlsTransport.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class DtlsTransport(parentLogger: Logger, id: String) {
129129
* (via [setSetupAttribute]
130130
*/
131131
fun startDtlsHandshake() {
132-
logger.info("Starting DTLS handshake, role=${dtlsStack.role}")
132+
logger.info("Starting DTLS handshake, role=${dtlsStack.role?.javaClass?.simpleName}")
133133
if (dtlsStack.role == null) {
134134
logger.warn("Starting the DTLS stack before it knows its role")
135135
}

jvb/src/main/kotlin/org/jitsi/videobridge/transport/ice/IceTransport.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ class IceTransport @JvmOverloads constructor(
207207
// local peer, do not really start the connectivity establishment
208208
// until we have at least one remote candidate per ICE Component.
209209
if (iceComponent.remoteCandidateCount > 0) {
210-
logger.info("Starting the agent with remote candidates.")
210+
logger.debug("Starting the agent with remote candidates.")
211211
iceAgent.startConnectivityEstablishment()
212212
}
213213
} else if (iceStream.remoteUfragAndPasswordKnown()) {
214214
// We don't have any remote candidates, but we already know the
215215
// remote ufrag and password, so we can start ICE.
216-
logger.info("Starting the Agent without remote candidates.")
216+
logger.debug("Starting the Agent without remote candidates.")
217217
iceAgent.startConnectivityEstablishment()
218218
} else {
219219
logger.cdebug { "Not starting ICE, no ufrag and pwd yet. ${transportPacketExtension.toStringOpt()}" }
@@ -366,7 +366,7 @@ class IceTransport @JvmOverloads constructor(
366366
val newState = ev.newValue as IceProcessingState
367367
val transition = IceProcessingStateTransition(oldState, newState)
368368

369-
logger.info("ICE state changed old=$oldState new=$newState")
369+
logger.debug("ICE state changed old=$oldState new=$newState")
370370

371371
when {
372372
transition.completed() -> {

0 commit comments

Comments
 (0)