Skip to content

Commit

Permalink
Merge pull request iotoasis#349 from oblivion14/develop
Browse files Browse the repository at this point in the history
CM 조회 로그 추가
  • Loading branch information
oblivion14 authored Feb 2, 2017
2 parents f81a8ce + 04ac6b3 commit 6cb91b3
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public ResponseMessage registerGeneralContextController(@RequestBody ContextMode

//NOTE: ContextModel List 퍼블리싱 - Profile 생성시 사용
@RequestMapping(value = "/name", method = RequestMethod.GET)
public List<String> retrieveContextModelList(){
public List<String> retrieveContextModelNameList(){
//
logger.info(LogPrint.inputInfoLogPrint());
List<String> contextModelNameList = contextModelLogic.retrieveContextModelNameList();
Expand Down Expand Up @@ -168,10 +168,13 @@ private List<String> contentsToStringList(List<Content> contentsList){

//NOTE: ContextModelList 조회
@RequestMapping(method = RequestMethod.GET)
public List<ContextModel> retrieveContextInformationList() {
public List<ContextModel> retrieveContextModelList() {
//
logger.info(LogPrint.inputInfoLogPrint());
List<ContextModel> contextModelList = contextModelLogic.retrieveContextInformationList();
for(ContextModel contextModel : contextModelList){
logger.debug("ContextModelList = " + contextModel.toString());
}
return contextModelList;
}

Expand Down

0 comments on commit 6cb91b3

Please sign in to comment.