From dd5fe10a217bbb32392be3122840d27655ce0652 Mon Sep 17 00:00:00 2001 From: hannathkadher Date: Mon, 9 Dec 2024 10:03:40 +0400 Subject: [PATCH] removed print --- .../all_spaces/bloc/space_management_bloc.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart b/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart index a171f2a7..ffa5687e 100644 --- a/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart +++ b/lib/pages/spaces_management/all_spaces/bloc/space_management_bloc.dart @@ -309,8 +309,6 @@ class SpaceManagementBloc await _api.deleteSpace(communityUuid, parent.uuid!); } } catch (e) { - print( - 'Error deleting space ${parent.name} (UUID: ${parent.uuid}, Community UUID: $communityUuid): $e'); rethrow; // Decide whether to stop execution or continue } } @@ -342,7 +340,6 @@ class SpaceManagementBloc space.uuid = response?.uuid; } } catch (e) { - print('Error creating space ${space.name}: $e'); rethrow; // Stop further execution on failure } }