# Log Message

> Perform Log Message through GenHealth.

Source: [https://genhealth.ai/docs/workflows/integrations/gen-health/log_message](https://genhealth.ai/docs/workflows/integrations/gen-health/log_message)

Integration: [GenHealth](https://genhealth.ai/docs/workflows/integrations/gen-health.md)

- Handler: `log_message`

## Inputs

- `level` — Level (select)
  Optional selected identifier or value.
  Options: Debug ("debug"), Info ("info"), Warning ("warning"), Error ("error")
- `message` — Message (text)
  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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {},
  "additionalProperties": true
}
```
