Log use of file search (fixes #43605)

This commit is contained in:
Christof Marti
2018-02-26 11:49:43 +01:00
parent 97a18810b0
commit 3de4e2f515
5 changed files with 40 additions and 29 deletions

View File

@@ -437,7 +437,7 @@ export function createApiFactory(
return extHostWorkspace.getRelativePath(pathOrUri, includeWorkspace);
},
findFiles: (include, exclude, maxResults?, token?) => {
return extHostWorkspace.findFiles(toGlobPattern(include), toGlobPattern(exclude), maxResults, token);
return extHostWorkspace.findFiles(toGlobPattern(include), toGlobPattern(exclude), maxResults, extension.id, token);
},
saveAll: (includeUntitled?) => {
return extHostWorkspace.saveAll(includeUntitled);