19 lines
426 B
Lua
19 lines
426 B
Lua
---@meta
|
|
|
|
-- Generated from native/src/bindings/core/log.cpp. Do not edit.
|
|
|
|
---@class LogLib
|
|
log = {}
|
|
|
|
---Writes a debug message to the firmware log.
|
|
---@param message string
|
|
function log.debug(message) end
|
|
|
|
---Writes an informational message to the firmware log.
|
|
---@param message string
|
|
function log.info(message) end
|
|
|
|
---Writes an error message to the firmware log.
|
|
---@param message string
|
|
function log.error(message) end
|