diff --git a/packages/backend/src/middleware/filesystem/datasets.rs b/packages/backend/src/middleware/filesystem/datasets.rs
index efdbb4f0baaf91f63c64c717bc90172ac71ce182..0e7d603c9535dac07d003cfdc660761986c8e44d 100644
--- a/packages/backend/src/middleware/filesystem/datasets.rs
+++ b/packages/backend/src/middleware/filesystem/datasets.rs
@@ -161,13 +161,6 @@ mod tests {
                 .to_string_lossy()
                 .to_string();
 
-        println!("Expected relative path: {:?}", relative_path);
-        println!("Project.absolute_path: {:?}", project.absolute_path);
-        println!(
-            "Project.absolute_path.parent(): {:?}",
-            project.absolute_path.parent().unwrap()
-        );
-
         let dataset_diff =
             refresh_project_folder_with_database(&mut connection, project.id).unwrap();
 
@@ -190,11 +183,6 @@ mod tests {
                 .unwrap()
                 .unwrap();
 
-        println!(
-            "Dataset path in DB: {:?}",
-            dataset_in_database.path.to_string()
-        );
-
         assert_eq!(
             dataset_in_database.path.to_string(),
             relative_path,
diff --git a/packages/frontend/src/stores/websockets.ts b/packages/frontend/src/stores/websockets.ts
index 2d0f6e0b57ef4c14e5f182a8bbb656ca2ba1f7a1..19f4137eca3d0f806a7bd99c6b1c3bc69154d5c5 100644
--- a/packages/frontend/src/stores/websockets.ts
+++ b/packages/frontend/src/stores/websockets.ts
@@ -35,7 +35,6 @@ export const useWebSocketStore = create<WebSocketState>()((set, get) => ({
                 set({ notifications: [...get().notifications, data.notification] })
             }
             else if (data.type =="update_notification"){
-                console.log("Updating notification with ID:", data.notification.id);
                 get().updateNotification(data.notification);
             }
             else {
@@ -53,7 +52,6 @@ export const useWebSocketStore = create<WebSocketState>()((set, get) => ({
         };
     },
     updateNotification: (notification) => {
-        console.log("Updating notification with ID:", notification.id);
         set((state) => ({
             notifications: state.notifications.map((n) =>
                 n.id === notification.id ? notification : n