From e77f5749b83e52a3bbf238a3bf470a7566bd28d1 Mon Sep 17 00:00:00 2001
From: Vincent Prouillet <balthek@gmail.com>
Date: Wed, 10 Aug 2022 23:44:23 +0200
Subject: [PATCH] Remove logging

---
 components/site/src/sass.rs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/components/site/src/sass.rs b/components/site/src/sass.rs
index 23423bd622..62b8742b63 100644
--- a/components/site/src/sass.rs
+++ b/components/site/src/sass.rs
@@ -10,8 +10,6 @@ use errors::{bail, Result};
 use utils::fs::{create_file, ensure_directory_exists};
 
 pub fn compile_sass(base_path: &Path, output_path: &Path) -> Result<()> {
-    console::info("compiling sass...");
-
     ensure_directory_exists(output_path)?;
 
     let sass_path = {