Skip to content

Commit

Permalink
Merge pull request #273 from Moon-GD/dev
Browse files Browse the repository at this point in the history
hotfix:console.log 제거
  • Loading branch information
Moon-GD authored Feb 22, 2023
2 parents cade023 + 5b1c997 commit ed02f57
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
12 changes: 6 additions & 6 deletions backend/src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
}
})
.then(function (response) {
console.log(response.data);

})
.catch(function (error) {
console.log(error);

});
}

Expand All @@ -27,10 +27,10 @@
withCredentials: true,
})
.then(function (response) {
console.log(response.data);

})
.catch(function (error) {
console.log(error);

});
}

Expand All @@ -41,10 +41,10 @@
withCredentials: true,
})
.then(function (response) {
console.log(response.data);

})
.catch(function (error) {
console.log(error);

});
}
</script>
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/public/js/mapView/HelperFunction.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function SearchNearGasStation(){
}
},
error:function(request, error){
console.log("code:"+request.status + ", message:" + request.responseText + ", error:"+error);

}
});
}
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/public/js/mapView/SearchFunction.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function AdjustLocationToCurLocation(lon, lat){
curAddr[0].innerHTML = result;
},
error : function(request, error) {
console.log("code:" + request.status + ", message:" + request.responseText + ", error:" + error);

}
});
}
Expand Down
2 changes: 0 additions & 2 deletions frontEnd/public/js/mapView/chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,11 @@ function getChartData(Resultelem){
},
error:function(request, error){
ShowErrorMessageAtChartArea();
console.log("code:"+request.status+"\n"+"message:"+request.responseText+"\n"+"error:"+error);
}
});
}

function ShowChart(response){
console.log(response);
const dateLabels = [];
const PREGasolineData = [];
const GasolineData = [];
Expand Down
1 change: 0 additions & 1 deletion frontEnd/public/js/myPage/userDetail/event.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const eventToUserDetailModifyBtn = ($container) => {
() => {
const modifiedGender = getGenderFromLabel($container);
const modifiedAge = getAgeFromLabel($container);
console.log(modifiedGender, modifiedAge);
fetchModifyUserDetail(modifiedGender, modifiedAge, $container);
}
])
Expand Down

0 comments on commit ed02f57

Please sign in to comment.