ax-agents 0.0.1-alpha.10 → 0.0.1-alpha.11
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.
- package/ax.js +4 -1
- package/package.json +1 -1
package/ax.js
CHANGED
|
@@ -2703,8 +2703,11 @@ function startArchangel(config, parentSession = null) {
|
|
|
2703
2703
|
env,
|
|
2704
2704
|
});
|
|
2705
2705
|
child.unref();
|
|
2706
|
+
const watchingLabel = parentSession
|
|
2707
|
+
? parentSession.session || parentSession.uuid?.slice(0, 8)
|
|
2708
|
+
: null;
|
|
2706
2709
|
console.log(
|
|
2707
|
-
`Summoning: ${config.name} (pid ${child.pid})${
|
|
2710
|
+
`Summoning: ${config.name} (pid ${child.pid})${watchingLabel ? ` [watching: ${watchingLabel}]` : ""}`,
|
|
2708
2711
|
);
|
|
2709
2712
|
}
|
|
2710
2713
|
|