Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGolms committed Mar 6, 2021
1 parent 249031d commit 4dbcbbe
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/utils/filesystem/filesystem.write.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ const writeFile = async (directory: Directory, path: string, data: string) => {
};

const writeFileToCache = async (path: string, data: string) => {
console.log(
'🚀 ~ file: filesystem.write.ts ~ line 26 ~ writeFileToCache ~ path',
path,
);
return await writeFile(Directory.Cache, path, data);
};

Expand Down

0 comments on commit 4dbcbbe

Please sign in to comment.