]> git.99rst.org Git - openwrt-packages.git/commitdiff
modemmanager: update logging messages
authorFlorian Eckert <redacted>
Thu, 29 Jan 2026 09:40:48 +0000 (10:40 +0100)
committerFlorian Eckert <redacted>
Mon, 7 Sep 2026 10:46:19 +0000 (12:46 +0200)
Remove the trailing '...' from the log messages to bring them into line
with the other log messages in this file.

Signed-off-by: Florian Eckert <redacted>
net/modemmanager/files/lib/netifd/proto/modemmanager.sh

index 72ae658f0cb36b9826b43fbca7989dda11b1307f..a7f52ce028d443aa7839b4477f0ef412abd4266c 100644 (file)
@@ -529,9 +529,9 @@ modemmanager_init_epsbearer() {
        local apn="$4"
 
        if [ "$eps" = "none" ]; then
-               echo "Deleting inital EPS bearer..."
+               echo "Deleting inital EPS bearer"
        else
-               echo "Setting '$eps' inital EPS bearer apn to '$apn'..."
+               echo "Setting '$eps' inital EPS bearer apn to '$apn'"
        fi
 
        mmcli --modem="${device}" \
@@ -697,13 +697,13 @@ proto_modemmanager_setup() {
                modemmanager_set_plmn "$device" "$interface" "" "$force_connection"
                [ "$?" -ne "0" ] && return 1
        else
-               echo "starting network registration with plmn '${plmn}'..."
+               echo "starting network registration with plmn '${plmn}'"
                modemmanager_set_plmn "$device" "$interface" "$plmn" "$force_connection"
                [ "$?" -ne "0" ] && return 1
        fi
 
        # setup connect args; APN mandatory (even if it may be empty)
-       echo "starting connection with apn '${apn}'..."
+       echo "starting connection with apn '${apn}'"
 
        # setup allow-roaming parameter
        if [ -n "${allow_roaming}" ] && [ "${allow_roaming}" -eq 0 ];then
git clone https://git.99rst.org/PROJECT