mariadb log: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Server|1.0}} | {{Info|Function|Server|1.0}} | ||
{{Notice|This function is provided by the official [[ | {{Notice|This function is provided by the official [[MariaDB]] plugin.}} | ||
{{FuncDescription| | {{FuncDescription|Set the mariaDB logging level.}} | ||
{{FuncSyntax|mariadb_log(level_str)}} | {{FuncSyntax|mariadb_log(level_str)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|level_str| | {{FuncParam|level_str|The level of logging as a string. logging levels: none, error, warning, info, debug}} | ||
{{FuncReturnValue| | {{FuncReturnValue|This function returns nothing.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
AddEvent("OnPackageStart", function() | |||
-- logging levels: none, error, warning, info, debug | |||
mariadb_log("error") | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{Template:MariaDBFunctions}} |
Latest revision as of 08:21, 2 September 2020
Description
Set the mariaDB logging level.
Syntax
mariadb_log(level_str)
Parameters
- level_str
The level of logging as a string. logging levels: none, error, warning, info, debug
Return Value
- This function returns nothing.
Example
AddEvent("OnPackageStart", function()
-- logging levels: none, error, warning, info, debug
mariadb_log("error")
end)
See also
- OnQueryError
- mariadb_log
- mariadb_connect
- mariadb_connect_file
- mariadb_close
- mariadb_unprocessed_queries
- mariadb_async_query
- mariadb_query
- mariadb_await_query
- mariadb_query_file
- mariadb_await_query_file
- mariadb_errno
- mariadb_error
- mariadb_escape_string
- mariadb_prepare
- mariadb_set_charset
- mariadb_get_charset
- mariadb_stat
- mariadb_get_row_count
- mariadb_get_field_count
- mariadb_get_result_count
- mariadb_get_field_name
- mariadb_set_result
- mariadb_get_value_index
- mariadb_get_value_index_int
- mariadb_get_value_index_float
- mariadb_get_value_name
- mariadb_get_value_name_int
- mariadb_get_value_name_float
- mariadb_save_result
- mariadb_delete_result
- mariadb_set_active_result
- mariadb_unset_active_result
- mariadb_is_any_result_active
- mariadb_is_valid_result
- mariadb_get_affected_rows
- mariadb_get_warning_count
- mariadb_get_insert_id
- mariadb_get_query_exec_time
- mariadb_get_query_string
- mariadb_get_row
- mariadb_get_assoc