Skip to content

Commit

Permalink
[Improve] Fix placeholders should match arguments in log statement (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
lamberken authored Sep 6, 2023
1 parent 6406243 commit 11c8e0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public Result<Object> updateUdfFunc(User loginUser,
try {
doesResExist = storageOperate.exists(fullName);
} catch (Exception e) {
log.error("udf resource checking error", fullName);
log.error("udf resource :{} checking error", fullName, e);
result.setCode(Status.RESOURCE_NOT_EXIST.getCode());
result.setMsg(Status.RESOURCE_NOT_EXIST.getMsg());
return result;
Expand Down

0 comments on commit 11c8e0b

Please sign in to comment.