lua: allow the Log api to debug boxed objects (useful for pods)

This commit is contained in:
George Kiagiadakis
2021-06-02 13:13:20 +03:00
parent 132de309cb
commit 9db0e741cd
4 changed files with 32 additions and 5 deletions

View File

@@ -7,40 +7,45 @@ Debug Logging
Logs a warning message, like :c:macro:`wp_warning_object`
:param GObject object: optional object to associate the message with; you
:param object: optional object to associate the message with; you
may skip this and just start with the *message* as the first parameter
:type object: GObject or GBoxed
:param string message: the warning message to log
.. function:: Log.message(object, message)
Logs a normal message, like :c:macro:`wp_message_object`
:param GObject object: optional object to associate the message with; you
:param object: optional object to associate the message with; you
may skip this and just start with the *message* as the first parameter
:type object: GObject or GBoxed
:param string message: the normal message to log
.. function:: Log.info(object, message)
Logs a info message, like :c:macro:`wp_info_object`
:param GObject object: optional object to associate the message with; you
:param object: optional object to associate the message with; you
may skip this and just start with the *message* as the first parameter
:type object: GObject or GBoxed
:param string message: the info message to log
.. function:: Log.debug(object, message)
Logs a debug message, like :c:macro:`wp_debug_object`
:param GObject object: optional object to associate the message with; you
:param object: optional object to associate the message with; you
may skip this and just start with the *message* as the first parameter
:type object: GObject or GBoxed
:param string message: the debug message to log
.. function:: Log.trace(object, message)
Logs a trace message, like :c:macro:`wp_trace_object`
:param GObject object: optional object to associate the message with; you
:param object: optional object to associate the message with; you
may skip this and just start with the *message* as the first parameter
:type object: GObject or GBoxed
:param string message: the trace message to log
.. function:: Debug.dump_table(t)