Skip to documentation
GenHealth integration

Log Message

Perform Log Message through GenHealth.

View as Markdown
log_message
write

Inputs

  • level
    select
    Level

    Optional selected identifier or value.

    Options: Debug ("debug"), Info ("info"), Warning ("warning"), Error ("error")

  • message
    text
    Message

    Optional text value.

Outputs

No named outputs are declared for this action.

Output schema completeness: unknown

Safety

External effect
write
Confirmation recommended
No
Retry safe
No
Dry run supported
No

Schemas

These schemas are first-pass authoring guidance. Runtime validation remains authoritative.

Input schema
{
  "type": "object",
  "properties": {
    "level": {
      "enum": [
        "debug",
        "info",
        "warning",
        "error"
      ],
      "type": "string",
      "description": "Optional selected identifier or value.",
      "x-workflow-field-type": "select"
    },
    "message": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
View all GenHealth actions