Skip to content

Commit 0bc9941

Browse files
committed
Fixed Log Level for BehaviorClustering Infos
1 parent 906a369 commit 0bc9941

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/optimizationBenchmarking/evaluator/attributes/clusters/behavior/_BehaviorClusterer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ private final CCT __compute(final IExperimentSet data,
231231
: ((names instanceof IExperimentSet)//
232232
? " experiments" //$NON-NLS-1$
233233
: "? i am confused?")));//$NON-NLS-1$
234-
logger.finer("Beginning to cluster" + what + //$NON-NLS-1$
234+
logger.fine("Beginning to cluster" + what + //$NON-NLS-1$
235235
" based on algorithm runtime behavior.");//$NON-NLS-1$
236236
if (logger.isLoggable(Level.FINER)) {
237237
logger.finer(//
@@ -316,7 +316,7 @@ private final CCT __compute(final IExperimentSet data,
316316
clusters = null;
317317
if ((logger != null) && (what != null)
318318
&& (logger.isLoggable(Level.FINE))) {
319-
logger.finer("Finished clustering" + what + //$NON-NLS-1$
319+
logger.fine("Finished clustering" + what + //$NON-NLS-1$
320320
" based on algorithm performance fingerprints, obtained "//$NON-NLS-1$
321321
+ result.getData().size() + " clusters.");//$NON-NLS-1$
322322
}

0 commit comments

Comments
 (0)