Skip to content

Commit 1f30f1a

Browse files
committed
remove console logs
1 parent 7d38e19 commit 1f30f1a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/utils/migrateSubtasksSettings.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)