diff --git a/api/routers/sources.py b/api/routers/sources.py index 2337ce6c..30b4e3e6 100644 --- a/api/routers/sources.py +++ b/api/routers/sources.py @@ -113,7 +113,7 @@ def str_to_bool(value: str) -> bool: try: notebooks_list = json.loads(notebooks) except json.JSONDecodeError: - logger.error(f"DEBUG - Invalid JSON in notebooks field: {notebooks}") + logger.error(f"Invalid JSON in notebooks field: {notebooks}") raise ValueError("Invalid JSON in notebooks field") transformations_list = [] @@ -122,7 +122,7 @@ def str_to_bool(value: str) -> bool: transformations_list = json.loads(transformations) except json.JSONDecodeError: logger.error( - f"DEBUG - Invalid JSON in transformations field: {transformations}" + f"Invalid JSON in transformations field: {transformations}" ) raise ValueError("Invalid JSON in transformations field")