diff --git a/djangoldp/management/commands/generate_static_content.py b/djangoldp/management/commands/generate_static_content.py
index a668a542af592e2a9d5b8436ba20a211c6dca1be..3023a2db7d8574741cca624b71850f668fcdca0f 100644
--- a/djangoldp/management/commands/generate_static_content.py
+++ b/djangoldp/management/commands/generate_static_content.py
@@ -62,7 +62,6 @@ class Command(BaseCommand):
             else:
                 self.update_and_fetch_id(data, base_uri, output_dir, depth, max_depth)
 
-            print(f"Content: {data}")
             return json.dumps(data)
         except json.JSONDecodeError as e:
             self.stdout.write(self.style.ERROR(f'Failed to decode JSON: {e}'))
@@ -73,22 +72,20 @@ class Command(BaseCommand):
             parsed_url = urlparse(item['@id'])
             path = f'/ssr{parsed_url.path}'
             item['@id'] = urlunparse((parsed_url.scheme, parsed_url.netloc, path, parsed_url.params, parsed_url.query, parsed_url.fragment))
+
             associated_url = urlunparse((parsed_url.scheme, parsed_url.netloc, parsed_url.path, parsed_url.params, parsed_url.query, parsed_url.fragment))
             associated_file_path = path[1:-1] + '.json'
-            print(f"associated_file_path: {associated_file_path}")
             associated_file_dir = os.path.dirname(associated_file_path)
+
             if not os.path.exists(associated_file_dir):
                 os.makedirs(associated_file_dir)
 
-            # if not os.path.exists(associated_file_path):
-              # Fetch associated content
             try:
                 response = requests.get(associated_url, timeout=request_timeout)
                 if response.status_code == 200:
                     associated_content = self.update_ids_and_fetch_associated(response.text, base_uri, output_dir, depth + 1, max_depth)
-                    print(f"associated_file_path: {associated_file_path}")
                     associated_file_dir = os.path.dirname(associated_file_path)
-                    print(f"associated_file_path: {associated_file_dir}")
+
                     if not os.path.exists(associated_file_dir):
                         os.makedirs(associated_file_dir)
                     with open(associated_file_path, 'w') as f:
@@ -100,8 +97,6 @@ class Command(BaseCommand):
                 self.stdout.write(self.style.ERROR(f'Request to {associated_url} timed out'))
             except requests.exceptions.RequestException as e:
                 self.stdout.write(self.style.ERROR(f'An error occurred: {e}'))
-            # else:
-            #     self.stdout.write(self.style.SUCCESS(f'Associated file already exists for {associated_url}, skipping fetch'))
 
         for key, value in item.items():
             if isinstance(value, dict):
diff --git a/djangoldp/urls.py b/djangoldp/urls.py
index 075dddec22b9993fe672d16417755b83b0ccecde..defa166bed99aac2c0c7a28aa4b2258671703b6a 100644
--- a/djangoldp/urls.py
+++ b/djangoldp/urls.py
@@ -37,7 +37,6 @@ urlpatterns = [
                                                                     permission_classes=[ReadOnly], )),
     re_path(r'^\.well-known/webfinger/?$', WebFingerView.as_view()),
     path('inbox/', InboxView.as_view()),
-    # path('ssr/<str:filename>/', serve_static_content, name='serve_static_content'),
     re_path(r'^ssr/(?P<path>.*)$', serve_static_content, name='serve_static_content'),
 ]
 
diff --git a/djangoldp/views.py b/djangoldp/views.py
index f88516dfc0bc1252f79c8588d783724d5ff9ba1b..c90eef1ebcbd8edcbb7f70d000f400bd1d1388ed 100644
--- a/djangoldp/views.py
+++ b/djangoldp/views.py
@@ -624,7 +624,6 @@ def serve_static_content(request, path):
     if not file_path.endswith('.json'):
         file_path += '.json'
 
-    print(f"file_path: {file_path}")
     if os.path.exists(file_path):
         with open(file_path, 'r') as file:
             content = file.read()