fix(tasks): avoid logging issue search task result #7870 (#8123)

Co-authored-by: cocojojo5213 <cocojojo5213@users.noreply.github.com>
This commit is contained in:
felix bear 2026-06-08 18:27:09 +09:00 committed by GitHub
parent eb5f353021
commit 06a17b4b9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,7 +165,12 @@ export class AddTaskBarIssueSearchService {
item.issueType,
this._workContextService.activeWorkContextId as string,
);
TaskLog.log(res);
TaskLog.log('Issue search existing task result', {
hasMatch: !!res,
taskId: res?.task.id,
isFromArchive: res?.isFromArchive,
subTaskCount: res?.subTasks?.length ?? 0,
});
if (!res) {
return await this._issueService.addTaskFromIssue({
issueProviderKey: item.issueType,