# Log Function

{% code lineNumbers="true" %}

```
log()
```

{% endcode %}

The log function broadcasts a message to all players (`@a`) in the chat. It is a simplified version of the `/tellraw @a "Message"` command. You can still achieve the same result with `run(tellraw @a "your message goes here")` .&#x20;

The log function:

{% code lineNumbers="true" %}

```
log("String") -- String
log(1) -- Number
log(variable) -- Variable 
log(1 + 2) -- Operation
log("string"..variable) -- Concatenation 
log("string"..variable) -- Concatenation 
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://control-blocks-mod.gitbook.io/control-blocks-mod-docs/controlscript/built-in-functions/log-function.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
