From 2696f0b95ed9e68274407c3aed292adf96b12536 Mon Sep 17 00:00:00 2001 From: Him188 Date: Mon, 16 Aug 2021 13:48:45 +0800 Subject: [PATCH] Remove `.debug` in `mirai.network.debug.notice.pipeline.log.full` --- .../kotlin/network/components/NoticeProcessorPipeline.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mirai-core/src/commonMain/kotlin/network/components/NoticeProcessorPipeline.kt b/mirai-core/src/commonMain/kotlin/network/components/NoticeProcessorPipeline.kt index 6cf81a7cb..a81d7e08b 100644 --- a/mirai-core/src/commonMain/kotlin/network/components/NoticeProcessorPipeline.kt +++ b/mirai-core/src/commonMain/kotlin/network/components/NoticeProcessorPipeline.kt @@ -203,7 +203,7 @@ internal open class NoticeProcessorPipelineImpl private constructor() : NoticePr } protected open fun packetToString(data: Any?): String = - data.toDebugString("mirai.network.debug.notice.pipeline.log.full") + data.toDebugString("mirai.network.notice.pipeline.log.full") companion object {