Skip to content

Commit dfb4d82

Browse files
committed
fix: remove log
1 parent f53c5fd commit dfb4d82

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils/storage.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,11 @@ export class GitIntentionalCommitStorage {
9191
const result = await git.cwd(root).show(`${this.REFS_PREFIX}/commits:${this.storageFilename}`);
9292
const data = this.migrateData(JSON.parse(result));
9393

94-
console.log(data);
9594
return data.commits;
9695
} catch {
9796
const commitsFile = await this.getCommitsFile();
9897
const data = this.migrateData(await fs.readJSON(commitsFile));
99-
console.log(data);
98+
10099
return data.commits;
101100
}
102101
}

0 commit comments

Comments
 (0)