Customizações Avançadas
Bibliotecas
Logs
este módulo é responsável pela geração de logs durante o tempo de execução da aplicação os logs são registrados em um arquivo, utilizando o formato chave valor atalhos /#log métodos log \ @param identifier the identifier of the log \ @param value the value to be logged log(identifier, value) function process data(a) \ perform some operations (this can be customized) \ for the sake of this example, we will simply pass the variable through unchanged log("processing", a) return a end \ assuming the variable "a" has the value of 42 local a = 42 \ when the function is called, the log entry generated would look like this \ \[2025 02 13 18 03 37 137227800 03 00 "processing"] 42