From 385e56c726b0cc726292861e5d2298f1e9ebb869 Mon Sep 17 00:00:00 2001 From: Minung Han Date: Tue, 17 Feb 2026 16:02:59 +0900 Subject: [PATCH] fix(docs): correct reversed meaning in Korean plugins logging section --- packages/web/src/content/docs/ko/plugins.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/content/docs/ko/plugins.mdx b/packages/web/src/content/docs/ko/plugins.mdx index 9a2995df8394..7214f326587e 100644 --- a/packages/web/src/content/docs/ko/plugins.mdx +++ b/packages/web/src/content/docs/ko/plugins.mdx @@ -312,7 +312,7 @@ export const CustomToolsPlugin: Plugin = async (ctx) => { ### 로깅 -구조화된 로깅을 위한 `client.app.log()` 대신에 `console.log`를 사용하십시오: +구조화된 로깅을 위해 `console.log` 대신 `client.app.log()`를 사용하십시오: ```ts title=".opencode/plugins/my-plugin.ts" export const MyPlugin = async ({ client }) => {