Parent-Child App and Device Logging Changes

Just to clarify, the messages are being logged from the parents context, just that not 100% of the messages are showing up on live logging. What I had mentioned earlier was in reference to this piece of code I had written as a workaround before this fix was put into production.

Essentially the parent would call the child device to log messages. So what my parent test app now does is:

log.trace "From childFunc"
child.log "From childFunc"

When this code is run 10 times, this should ideally print 10 messages from the child context and 10 messages from the parents context. My point was that I’m seeing 8 messages being dropped when the parent prints the log v/s all 10 showing up when the child prints the logs. The live logging is dropping messages.

Hope this clarifies it.

1 Like