axlSDBDebugPrint
axlSDBDebugPrint(x_SDBH) =>x_SDBH
Description
Prints the in-memory database rooted at the supplied handle. Useful for debugging so that SDB modifications can be seen without saving the XML to disk.
Arguments
Value Returned
|
The handle of the supplied x_SDBH is returned but this value is inconsequential as this function is called for the printed tree. |
||
Examples
Prints the in-memory database rooted at the supplied handle
;; given mainSDBH pointing to current setup and some variables
varsSDBH = car( axlGetVars(mainSDBH)) axlSDBDebugPrint(varsSDBH) -> 1297--\vars|'' 1304---\var|RES <enabled: 1> 0---->value|4k
1338---\var|BOB
0---->value|1 2 3
Return to top