From d337190b5965130553aaf843e612da5cb7f0c2da Mon Sep 17 00:00:00 2001 From: CityFun <31820853+zhengkunwang223@users.noreply.github.com> Date: Mon, 9 Feb 2026 15:38:06 +0800 Subject: [PATCH] fix: remove some code (#11836) --- agent/app/service/app_sync_task.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/agent/app/service/app_sync_task.go b/agent/app/service/app_sync_task.go index e9cd16927..1aea0753f 100644 --- a/agent/app/service/app_sync_task.go +++ b/agent/app/service/app_sync_task.go @@ -122,7 +122,6 @@ func (a AppService) createSyncAppStoreTask(sharedCtx **appSyncContext) func(t *t global.LOG.Infof("[AppStore] Appstore sync completed") *sharedCtx = ctx - t.Logf("App store sync completed: total=%d, add=%d, update=%d, delete=%d", len(ctx.appsMap), addCount, updateCount, deleteCount) t.LogSuccess(i18n.GetMsgByKey("AppStore") + " " + i18n.GetMsgByKey("TaskSync")) return nil } @@ -310,7 +309,6 @@ func (a AppService) createSyncAppStoreMetaTask(sharedCtx **appSyncContext) func( } global.LOG.Infof("[AppStore] Appstore meta sync completed") - t.LogSuccess(i18n.GetMsgByKey("SyncAppDetail")) return nil } }