Skip to content

Commit

Permalink
[Optimize ]Optimize log printing that can cause ambiguity (#2984)
Browse files Browse the repository at this point in the history
Co-authored-by: gaoyan1998 <gaoyan1998@users.noreply.github.com>
  • Loading branch information
gaoyan1998 and gaoyan1998 authored Jan 11, 2024
1 parent 4893d4a commit 1ca1dfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dinky-core/src/main/java/org/dinky/trans/Operations.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ private static Operation[] getAllOperations() {
throw new RuntimeException(e);
} catch (NoClassDefFoundError e) {
log.warn(
"getAllOperations error, If you do not have this class, please add the corresponding dependency. Operation: {}.",
"getAllOperations error, If you do not have this class, please add the corresponding dependency. Operation: {}.{}",
t,
e);
e.getMessage());
return null;
}
})
Expand Down

0 comments on commit 1ca1dfe

Please sign in to comment.