Skip to content

Commit

Permalink
5552 LRA Jandex idx log level
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kec <[email protected]>
  • Loading branch information
danielkec committed Nov 29, 2022
1 parent dd8d56f commit 13a337d
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 13a337d

Please sign in to comment.