diff --git a/web/app/components/app/app-publisher/index.tsx b/web/app/components/app/app-publisher/index.tsx index 54f3546fd8..7e82fc378e 100644 --- a/web/app/components/app/app-publisher/index.tsx +++ b/web/app/components/app/app-publisher/index.tsx @@ -213,10 +213,6 @@ const AppPublisher = ({ const appId = appDetail?.id const socket = appId ? webSocketClient.getSocket(appId) : null - console.warn('[app-publisher] publish success', { - appId, - hasSocket: Boolean(socket), - }) if (appId) invalidateAppWorkflow(appId) else diff --git a/web/app/components/workflow-app/components/workflow-header/features-trigger.tsx b/web/app/components/workflow-app/components/workflow-header/features-trigger.tsx index d313a271e7..5aabc2e3f2 100644 --- a/web/app/components/workflow-app/components/workflow-header/features-trigger.tsx +++ b/web/app/components/workflow-app/components/workflow-header/features-trigger.tsx @@ -158,21 +158,11 @@ const FeaturesTrigger = () => { // Then perform the detailed validation if (await handleCheckBeforePublish()) { - console.warn('[workflow-header] publish start', { - appId: appID, - title: publishParams?.title ?? '', - }) const res = await publishWorkflow({ url: `/apps/${appID}/workflows/publish`, title: publishParams?.title || '', releaseNotes: publishParams?.releaseNotes || '', }) - - console.warn('[workflow-header] publish response', { - appId: appID, - hasResponse: Boolean(res), - createdAt: res?.created_at, - }) if (res) { notify({ type: 'success', message: t('api.actionSuccess', { ns: 'common' }) }) updatePublishedWorkflow(appID!)