The first argument is either a Table, or it's a Userdata, which refers to any of the added Figura types
Prints the table out to chat, specially formatted
If userdata is passed in, it is automatically converted to a table or string, and displayed
In the case of tables inside of tables, the "maxDepth" parameter will be used to determine how far to go
Default value for maxDepth is 1
Third argument, "silent", will skip the chat print and will only return the string
overload 1:
logTable(table)
Method Property | Fluent Description | Representation |
table accepts | a table | |
Return Value | a String | |
overload 2:
logTable(javaObject)
Method Property | Fluent Description | Representation |
javaObject accepts | an Userdata | |
Return Value | a String | |
overload 3:
logTable(table, maxDepth)
Method Property | Fluent Description | Representation |
table accepts | a table | |
maxDepth accepts | an Integer | |
Return Value | a String | |
overload 4:
logTable(javaObject, maxDepth)
Method Property | Fluent Description | Representation |
javaObject accepts | an Userdata | |
maxDepth accepts | an Integer | |
Return Value | a String | |
overload 5:
logTable(table, maxDepth, silent)
Method Property | Fluent Description | Representation |
table accepts | a table | |
maxDepth accepts | an Integer | |
silent accepts | a Boolean | |
Return Value | a String | |
overload 6:
logTable(javaObject, maxDepth, silent)
Method Property | Fluent Description | Representation |
javaObject accepts | an Userdata | |
maxDepth accepts | an Integer | |
silent accepts | a Boolean | |
Return Value | a String | |