You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (WANTED_JOB_TYPES.stream().noneMatch(jobType::equals)) {
38
-
log.info("NuOpenLineageLog: OpenLineage event with job type {} has no lineage value and should not be emitted", jobType);
52
+
log.info("NuOpenLineageLog: NuEventEmitter: isPermittedJobType: OpenLineage event with job type {} has no lineage value and should not be emitted", jobType);
log.info("NuOpenLineageLog: OpenLineage event has no job name and should not be emitted");
69
+
log.info("NuOpenLineageLog: NuEventEmitter: isPermittedJobName: OpenLineage event has no job name and should not be emitted");
56
70
returnfalse;
57
71
}
58
72
if (WANTED_EVENT_NAME_SUBSTRINGS.stream().noneMatch(jobName::contains)) {
59
-
log.info("NuOpenLineageLog: OpenLineage event job name {} has no permitted substring and should not be emitted", jobName);
73
+
log.info("NuOpenLineageLog: NuEventEmitter: isPermittedJobName: OpenLineage event job name {} has no permitted substring and should not be emitted", jobName);
log.info("NuOpenLineageLog: Failed to discard column lineage facet", e);
104
+
log.info("NuOpenLineageLog: NuEventEmitter: discardColumnLineageFacet: Failed to discard column lineage facet", e);
91
105
}
92
106
});
93
107
} catch (NoSuchFieldExceptione) {
94
-
log.info("NuOpenLineageLog: Failed to discard column lineage facet: columnLineage field not found at OpenLineage.DatasetFacets", e);
108
+
log.info("NuOpenLineageLog: NuEventEmitter: discardColumnLineageFacet: Failed to discard column lineage facet: columnLineage field not found at OpenLineage.DatasetFacets", e);
0 commit comments