浏览代码

Remove `.debug` in `mirai.network.debug.notice.pipeline.log.full`

Him188 4 年之前
父节点
当前提交
2696f0b95e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      mirai-core/src/commonMain/kotlin/network/components/NoticeProcessorPipeline.kt

+ 1 - 1
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 {