Skip to content

Commit 4bad064

Browse files
authored
fix(ConstantsManager): log tables at INFO level (#1052)
1 parent 87c12ef commit 4bad064

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

common-tools/clas-detector/src/main/java/org/jlab/detector/calib/utils/ConstantsManager.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ else if (requests > 1) {
130130
}
131131
}
132132

133-
LOGGER.log(Level.FINE, "[ConstantsManager] ---> loading table for run = " + run);
133+
LOGGER.log(Level.INFO, "[ConstantsManager] ---> loading table for run = " + run);
134134
DatabaseConstantsDescriptor desc = defaultDescriptor.getCopy(run);
135135
DatabaseConstantProvider provider = new DatabaseConstantProvider(run, this.databaseVariation, this.timeStamp);
136136

@@ -142,7 +142,8 @@ else if (requests > 1) {
142142
try {
143143
IndexedTable table = provider.readTable(tableName, desc.getTableIndices().get(i));
144144
desc.getMap().put(tk.get(i), table);
145-
LOGGER.log(Level.FINE, String.format("***** >>> adding : %14s / table = %s", tk.get(i), tableName));
145+
LOGGER.log(Level.INFO, "***** >>> add table = {0}", tableName);
146+
LOGGER.log(Level.FINEST, " key = {0}", tk.get(i));
146147
} catch (Exception e) {
147148
LOGGER.log(Level.SEVERE, e.getMessage());
148149
LOGGER.log(Level.SEVERE, "[ConstantsManager] ---> error reading table : " + tableName);

0 commit comments

Comments
 (0)