Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MONITOR: Link DbusConnection and sbus_connection
Although related, the DbusConnection and its associated sbus_connection had no link in the logs. We had this: ``` [sbus_server_new_connection] (0x0200): Adding connection 0x11fe700. ... [sbus_server_bus_hello] (0x4000): Assigning unique name :1.3 to connection 0x11e4a90 ``` Now we have: ``` [sbus_server_new_connection] (0x0200): New dbus connection 0x11fe700. ... [sbus_server_new_connection] (0x0200): Adding sbus connection 0x11e4a90. ... [sbus_server_bus_hello] (0x4000): Assigning unique name :1.3 to connection 0x11e4a90 ``` Which allows to establish the relationship between them: the new sbus connection is associated to the preceding dbus connection. Both messages are logged by the same function. Reviewed-by: Alexey Tikhonov <[email protected]> Reviewed-by: Pavel Březina <[email protected]>
- Loading branch information