Skip to content

Commit

Permalink
more manageable content logging
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnbennett committed Oct 25, 2024
1 parent 9d4ff06 commit c92a63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/app/api/sr.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def download_band(name: str, band: int) -> bytes:
response = s3.get_object(Bucket=bucket_name, Key=obj_key, RequestPayer='requester')
print("download_band response: " + str(response))
content = response['Body'].read()
print("download_band content: " + str(content))
print("download_band content len: " + len(content))
return content

def get_scene(lat: float, lng: float) -> list[bytes]:
Expand Down

0 comments on commit c92a63d

Please sign in to comment.