Skip to content

Commit

Permalink
5202 LRA Jandex idx log level (#5556)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kec <daniel.kec@oracle.com>
  • Loading branch information
danielkec authored Nov 29, 2022
1 parent 77c5f1b commit 9825e79
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021 Oracle and/or its affiliates.
* Copyright (c) 2022 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -124,7 +124,7 @@ Set<MethodInfo> getAllDeclaredMethods(ClassInfo classInfo) {
.map(className -> {
ClassInfo ci = index.getClassByName(className);
if (ci == null) {
LOGGER.log(Level.SEVERE, "Class {0} not found in index", className);
LOGGER.log(Level.FINE, "Class {0} not found in index", className);
}
return ci;
})
Expand Down

0 comments on commit 9825e79

Please sign in to comment.