Skip to content

Commit c34159f

Browse files
committed
Merge branch 'main' into 1.19
2 parents 5af9236 + b28f456 commit c34159f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Common/src/main/kotlin/gay/object/hexdebug/adapter/DebugAdapterManager.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,18 @@ object DebugAdapterManager {
2525
}
2626

2727
private fun add(player: ServerPlayer) {
28-
HexDebug.LOGGER.info("Adding debug adapter for {}", player.uuid)
28+
HexDebug.LOGGER.debug("Adding debug adapter for {}", player.uuid)
2929
debugAdapters[player.uuid] = DebugAdapter(player)
3030
}
3131

3232
private fun remove(player: ServerPlayer) {
33-
HexDebug.LOGGER.info("Removing debug adapter for {}", player.uuid)
33+
HexDebug.LOGGER.debug("Removing debug adapter for {}", player.uuid)
3434
get(player)?.disconnectClient()
3535
debugAdapters.remove(player.uuid)
3636
}
3737

3838
private fun removeAll() {
39-
HexDebug.LOGGER.info("Removing {} debug adapters", debugAdapters.size)
39+
HexDebug.LOGGER.debug("Removing {} debug adapters", debugAdapters.size)
4040
for (debugAdapter in debugAdapters.values) {
4141
debugAdapter.disconnectClient()
4242
}

Common/src/main/kotlin/gay/object/hexdebug/adapter/proxy/DebugProxyClient.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ data class DebugProxyClient(val input: InputStream, val output: OutputStream) {
8080

8181
private fun stop() {
8282
if (thread == null) return
83-
HexDebug.LOGGER.info("Stopping DebugAdapterProxyClient")
83+
HexDebug.LOGGER.debug("Stopping DebugAdapterProxyClient")
8484
wrapperJob?.cancel()
8585
thread?.join()
86-
HexDebug.LOGGER.info("Stopped DebugAdapterProxyClient")
86+
HexDebug.LOGGER.debug("Stopped DebugAdapterProxyClient")
8787
}
8888

8989
private suspend fun runServerWrapper() {

0 commit comments

Comments
 (0)