Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
Remove debug error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kakwok committed Apr 12, 2018
1 parent 3c0e7d4 commit bbce5cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/rcms/fm/app/level1/HCALStateNotificationHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ else if (!fm.containerFMChildren.isEmpty()) {
String LV2fmState = LV2fm.getState().getStateString();
if (LV2fmState.equals(HCALStates.ERROR.toString()) ) {
VectorT<MapT<StringT>> xDAQ_err_msg = (VectorT<MapT<StringT>>)LV2fm.getParameter().get("XDAQ_ERR_MSG").getValue();
logger.error("[HCAL " + fm.FMname+"] XDAQ_ERR_MSG from LV2="+LV2fm.getName()+" parameter value="+xDAQ_err_msg.toString());
logger.info("[HCAL " + fm.FMname+"] XDAQ_ERR_MSG from LV2="+LV2fm.getName()+" parameter value="+xDAQ_err_msg.toString());
LV1_xDAQ_err_msg.getVector().addAll(xDAQ_err_msg.getVector());
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/rcms/fm/app/level1/HCALlevelTwoFunctionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ public String getSupervisorErrorMessage() {
for (String s : errAppMsgString ){ errAppMsgVector.add(new StringT(s)); }
for (String s : AllHandledAppNameString){ AllHandledAppNameVector.add(new StringT(s)); }
for (String s : AllHandledAppURIString ){ AllHandledAppURIVector.add(new StringT(s)); }
logger.error("errAppNameString = " + errAppNameVector.toString());
logger.error("errAppMsgString = " + errAppMsgVector.toString());
//logger.error("errAppNameString = " + errAppNameVector.toString());
//logger.error("errAppMsgString = " + errAppMsgVector.toString());

if(errAppNameVector.size()==(errAppMsgVector.size())){
for (StringT errAppName : errAppNameVector){
Expand Down

0 comments on commit bbce5cb

Please sign in to comment.