fiftyone.pipeline.core 4.4.3 → 4.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/flowElement.js +8 -0
  2. package/package.json +1 -1
package/flowElement.js CHANGED
@@ -147,6 +147,14 @@ class FlowElement {
147
147
  getProperties () {
148
148
  return this.properties;
149
149
  }
150
+
151
+ _log(type, message) {
152
+ if (this.pipelines) {
153
+ this.pipelines.forEach(pipeline => {
154
+ pipeline.log(type, message);
155
+ })
156
+ }
157
+ }
150
158
  }
151
159
 
152
160
  module.exports = FlowElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiftyone.pipeline.core",
3
- "version": "4.4.3",
3
+ "version": "4.4.4",
4
4
  "description": "Core library for the 51Degrees Pipeline API",
5
5
  "directories": {
6
6
  "test": "tests"