File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/workbench/contrib/tasks/browser Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,21 +35,21 @@ export class RunAutomaticTasks extends Disposable implements IWorkbenchContribut
35
35
}
36
36
37
37
private async tryRunTasks ( ) {
38
- this . logService . trace ( 'RunAutomaticTasks: Trying to run tasks.' ) ;
38
+ this . logService . info ( 'RunAutomaticTasks: Trying to run tasks.' ) ;
39
39
// Wait until we have task system info (the extension host and workspace folders are available).
40
40
if ( ! this . taskService . hasTaskSystemInfo ) {
41
- this . logService . trace ( 'RunAutomaticTasks: Awaiting task system info.' ) ;
41
+ this . logService . info ( 'RunAutomaticTasks: Awaiting task system info.' ) ;
42
42
await Event . toPromise ( Event . once ( this . taskService . onDidChangeTaskSystemInfo ) ) ;
43
43
}
44
44
45
- this . logService . trace ( 'RunAutomaticTasks: Checking if automatic tasks should run.' ) ;
45
+ this . logService . info ( 'RunAutomaticTasks: Checking if automatic tasks should run.' ) ;
46
46
const isFolderAutomaticAllowed = this . storageService . getBoolean ( ARE_AUTOMATIC_TASKS_ALLOWED_IN_WORKSPACE , StorageScope . WORKSPACE , undefined ) ;
47
47
const isWorkspaceTrusted = this . workspaceTrustManagementService . isWorkspaceTrusted ( ) ;
48
48
// Only run if allowed. Prompting for permission occurs when a user first tries to run a task.
49
49
if ( isFolderAutomaticAllowed && isWorkspaceTrusted ) {
50
50
this . taskService . getWorkspaceTasks ( TaskRunSource . FolderOpen ) . then ( workspaceTaskResult => {
51
51
let { tasks } = RunAutomaticTasks . findAutoTasks ( this . taskService , workspaceTaskResult ) ;
52
- this . logService . trace ( `RunAutomaticTasks: Found ${ tasks . length } automatic tasks tasks` ) ;
52
+ this . logService . info ( `RunAutomaticTasks: Found ${ tasks . length } automatic tasks tasks` ) ;
53
53
54
54
if ( tasks . length > 0 ) {
55
55
RunAutomaticTasks . runTasks ( this . taskService , tasks ) ;
You can’t perform that action at this time.
0 commit comments