File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed
Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ export async function migrateSubtasksSettings(
1717 try {
1818 // Get old value
1919 const oldValue = await context . globalState . get ( subtasksKey )
20- console . log ( `old subtasks value: ${ oldValue } ` )
2120
2221 if ( oldValue !== undefined && typeof oldValue === "boolean" ) {
2322 // Update new settings
@@ -26,11 +25,6 @@ export async function migrateSubtasksSettings(
2625 context . globalState . update ( subtaskCompletionKey , oldValue ) ,
2726 ] )
2827
29- const creationValue = await context . globalState . get ( subtaskCreationKey )
30- const completionValue = await context . globalState . get ( subtaskCompletionKey )
31- console . log ( `new subtask creation value value: ${ creationValue } ` )
32- console . log ( `new subtask completion value value: ${ completionValue } ` )
33-
3428 // Schedule cleanup
3529 setTimeout ( async ( ) => {
3630 try {
You can’t perform that action at this time.
0 commit comments