- ubus: enhanced ROAMING request log entry with BSSID
- ubus: deleted unnecessary static text

Signed-off-by: Nils Hendrik Rottgardt <n.rottga...@gmail.com>
---
 ubus.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ubus.c b/ubus.c
index c72f8f7..8d0f2be 100644
--- a/ubus.c
+++ b/ubus.c
@@ -694,10 +694,10 @@ int usteer_ubus_bss_transition_request(struct sta_info 
*si,
 
        if (!target_node) {
                // Add all known neighbors if no specific target set
-               MSG(VERBOSE, "ROAMING requested for sta=" MAC_ADDR_FMT " 
without target\n", MAC_ADDR_DATA(si->sta->addr));
+               MSG(VERBOSE, "ROAMING sta=" MAC_ADDR_FMT " without target\n", 
MAC_ADDR_DATA(si->sta->addr));
                usteer_ubus_disassoc_add_neighbors(si);
        } else {
-               MSG(VERBOSE, "ROAMING requested for sta=" MAC_ADDR_FMT " to %s 
with disassociation timer %u\n", MAC_ADDR_DATA(si->sta->addr), 
usteer_node_name(target_node), disassoc_timer);
+               MSG(VERBOSE, "ROAMING sta=" MAC_ADDR_FMT " to " MAC_ADDR_FMT " 
(%s) disassociation timer %u\n", MAC_ADDR_DATA(target_node->bssid), 
MAC_ADDR_DATA(si->sta->addr), usteer_node_name(target_node), disassoc_timer);
                usteer_ubus_disassoc_add_neighbor(si, target_node);
        }
        return ubus_invoke(ubus_ctx, ln->obj_id, "bss_transition_request", 
b.head, NULL, 0, 100);
@@ -735,7 +735,7 @@ int usteer_ubus_band_steering_request(struct sta_info *si,
        }
        blobmsg_close_array(&b, c);
        if (sizeof(si->node) > 0) {
-               MSG(VERBOSE, "BAND STEERING requested for sta=" MAC_ADDR_FMT " 
with disassociation timer %u\n", MAC_ADDR_DATA(si->sta->addr), disassoc_timer);
+               MSG(VERBOSE, "BAND STEERING sta=" MAC_ADDR_FMT " disassociation 
timer %u\n", MAC_ADDR_DATA(si->sta->addr), disassoc_timer);
                return ubus_invoke(ubus_ctx, ln->obj_id, 
"bss_transition_request", b.head, NULL, 0, 100);
        } else
                MSG(VERBOSE, "BAND STEERING no targets found for sta=" 
MAC_ADDR_FMT "\n", MAC_ADDR_DATA(si->sta->addr));
-- 
2.39.5


_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to