Skip to content

Commit

Permalink
Replace log error with warning in reflection with type not found
Browse files Browse the repository at this point in the history
  • Loading branch information
frantuma committed Jan 18, 2024
1 parent 5545dd2 commit 5a01ed6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static Type typeFromString(String type) {
try {
return loadClassByName(type);
} catch (Exception e) {
LOGGER.error(String.format("Failed to resolve '%s' into class", type), e);
LOGGER.warn(String.format("Failed to resolve '%s' into class", type), e);
}
return null;
}
Expand Down

0 comments on commit 5a01ed6

Please sign in to comment.