Skip to content

Commit

Permalink
Fix: 错误日志参数未打印的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
kuretru committed Jan 30, 2025
1 parent c638fbb commit 55c5978
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ protected QueryWrapper<D> buildQueryWrapper(Q query) {
}
}
} catch (IntrospectionException | IllegalAccessException | InvocationTargetException e) {
log.error("构建QueryWrapper时抛出异常:" + e.getMessage());
log.error("构建QueryWrapper时抛出异常:{}", e.getMessage());
}
return queryWrapper;
}
Expand Down

0 comments on commit 55c5978

Please sign in to comment.