Skip to content

Commit b287d3b

Browse files
committed
log all the info
1 parent 0843477 commit b287d3b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

common-tools/clas-detector/src/main/java/org/jlab/detector/decode/TranslationTable.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import org.jlab.detector.calib.utils.ConstantsManager;
55
import org.jlab.utils.groups.IndexedTable;
66

7-
87
/**
98
*
109
* @author baltzell
@@ -27,7 +26,10 @@ public void add(DetectorType dt, IndexedTable it) {
2726

2827
if (hasEntryByHash(hash)) {
2928
System.err.print("TranslationTable: found CCDB overlap for ");
30-
System.err.println(String.format("%d/%d/%d %s",crate,slot,channel,dt));
29+
System.err.println(String.format("type %d/%s versus %s and c/s/c=%d/%d/%d",
30+
getIntValueByHash("type",hash),
31+
DetectorType.getType(getIntValueByHash("type",hash)),
32+
dt,crate,slot,channel));
3133
}
3234
else {
3335
// add row to the new table:

0 commit comments

Comments
 (0)