Skip to content

Commit

Permalink
changing nu event emitter log
Browse files Browse the repository at this point in the history
  • Loading branch information
jrosend committed Oct 22, 2024
1 parent 73b104c commit 975f831
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private static void discardColumnLineageFacet(RunEvent event) {
.forEach(dataset -> {
try {
log.debug("Discarding column lineage facet for dataset {} {} {}",
dataset.getClass().getName(), dataset.getNamespace(), dataset.getName());
dataset.getClass().getSimpleName(), dataset.getNamespace(), dataset.getName());
columnLineageFacetField.set(dataset.getFacets(), null);
} catch (IllegalAccessException e) {
log.error("Failed to discard column lineage facet", e);
Expand Down

0 comments on commit 975f831

Please sign in to comment.