@steedos-labs/plugin-workflow 3.0.23 → 3.0.25
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.
|
@@ -165,9 +165,10 @@ UUFlowManager.getSpaceUser = async function (space_id, user_id, options = {}) {
|
|
|
165
165
|
* @throws {Error} If flow not found
|
|
166
166
|
*/
|
|
167
167
|
UUFlowManager.getFlow = async function (flow_id, options = {}) {
|
|
168
|
+
let now;
|
|
168
169
|
UUFlowManager.stats.getFlow++;
|
|
169
170
|
if (process.env.STEEDOS_DEBUG) {
|
|
170
|
-
|
|
171
|
+
now = new Date().toISOString();
|
|
171
172
|
console.time('UUFlowManager.getFlow' + now);
|
|
172
173
|
}
|
|
173
174
|
|