add_log_entry
Insert custom log entries into the TeamSpeak server log with specified levels (ERROR, WARNING, DEBUG, INFO) for tracking events or debugging server activities.
Instructions
Add a custom entry to the server log
Input Schema
Name | Required | Description | Default |
---|---|---|---|
log_level | Yes | Log level (1=ERROR, 2=WARNING, 3=DEBUG, 4=INFO) | |
message | Yes | Log message to add |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"log_level": {
"description": "Log level (1=ERROR, 2=WARNING, 3=DEBUG, 4=INFO)",
"enum": [
1,
2,
3,
4
],
"type": "integer"
},
"message": {
"description": "Log message to add",
"type": "string"
}
},
"required": [
"log_level",
"message"
],
"type": "object"
}