Skip to content

Commit

Permalink
chore: 출력하는 부분 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
voka committed Nov 12, 2023
1 parent 90bc860 commit 44565c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ public String imageUpload(String objectName, MultipartFile image) {
BlobInfo blobInfo = BlobInfo.newBuilder(blobId)
.setContentType("image/jpeg").build();
storage.create(blobInfo,image.getBytes());
System.out.println(
"File uploaded to bucket " + bucketName + " as " + objectName);
//System.out.println("File uploaded to bucket " + bucketName + " as " + objectName);
return objectName;
}
catch (IOException e){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class KakaoMapAPI {

public Optional<KakaoCoord2regionResponse> getLocationInfo(double latitude, double longitude){
String requestUrl = String.format("%s.json?x=%s&y=%s",rootUrl,longitude,latitude);
System.out.println(requestUrl);
//System.out.println(requestUrl);

StringBuffer response = new StringBuffer();

Expand All @@ -40,7 +40,7 @@ public Optional<KakaoCoord2regionResponse> getLocationInfo(double latitude, doub
//인증키 - KakaoAK하고 한 칸 띄워주셔야해요!
String auth = "KakaoAK " + apiKey;

System.out.println(auth);
//System.out.println(auth);

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

Expand Down

0 comments on commit 44565c4

Please sign in to comment.