Function AddChildLoggingContext(context: ^loggingContexts, add: ^loggingContexts) : Boolean
context: A loggingContext created by CreateLoggingContext
add: A loggingContext created by CreateLoggingContext that will become a child of context
Returns TRUE on success
This function makes a loggingContext a child of another loggingContext. Whenever the parent context is indented or logged to, the child loggingContext is also updated. This is particularly useful if you use a seperate debug log and an error log - any events logged to the error log can be automatically added to the debug log as well.
Example:
error.log
debug.log
verbose.log