🧹 logs clean

This commit is contained in:
ful1e5 2020-08-19 12:24:44 +05:30
parent 50453a9977
commit 123ddfc844

View file

@ -48,7 +48,6 @@ export const renderCursors = async ({
headless: true
});
try {
console.log("📸 Rendering Static Cursors...");
// Rendering satic .svg files
for (let svg of staticCursors) {
const buffer = fs.readFileSync(path.resolve(svgsDir, svg), "utf-8");
@ -77,8 +76,6 @@ export const renderCursors = async ({
await page.close();
}
console.log("🎥 Rendering Animated Cursors...");
// Rendering animated .svg files
for (let [svg, { frames }] of Object.entries(animatedCursors)) {
const buffer = fs.readFileSync(path.resolve(svgsDir, svg), "utf-8");