@almadar/std 16.28.0 → 16.28.1

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/dist/index.js CHANGED
@@ -552,6 +552,18 @@ var CORE_OPERATORS = {
552
552
  example: '["notify", "in_app", "Task created successfully"]',
553
553
  effect: { kind: "notify" }
554
554
  },
555
+ log: {
556
+ module: "core",
557
+ category: "effect",
558
+ minArity: 1,
559
+ maxArity: 1,
560
+ description: "Emit a structured info log line (compiled + runtime)",
561
+ hasSideEffects: true,
562
+ returnType: "void",
563
+ params: [{ name: "message", type: STRING, description: "Log message" }],
564
+ example: '["log", "Context below compact threshold"]',
565
+ effect: { kind: "log" }
566
+ },
555
567
  spawn: {
556
568
  module: "core",
557
569
  category: "effect",