Skip to content

Commit

Permalink
change log level
Browse files Browse the repository at this point in the history
  • Loading branch information
jerqi committed Sep 23, 2024
1 parent 6cddd60 commit c2c5c22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private User[] listUsersInternal(String metalake, List<Field> skippingFields) {
.list(namespace, UserEntity.class, Entity.EntityType.USER, skippingFields)
.toArray(new User[0]);
} catch (NoSuchEntityException e) {
LOG.warn("Metalake {} does not exist", metalake, e);
LOG.error("Metalake {} does not exist", metalake, e);
throw new NoSuchMetalakeException(METALAKE_DOES_NOT_EXIST_MSG, metalake);
} catch (IOException ioe) {
LOG.error("Listing user under metalake {} failed due to storage issues", metalake, ioe);
Expand Down

0 comments on commit c2c5c22

Please sign in to comment.