Skip to content

Commit

Permalink
start-sqm: Demote log line about start function to debug
Browse files Browse the repository at this point in the history
Signed-off-by: Toke Høiland-Jørgensen <[email protected]>
  • Loading branch information
tohojo committed Nov 17, 2020
1 parent 8746a86 commit 2cd8609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/start-sqm
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ sqm_trace; sqm_trace "$(date): Starting." # Add some space and a date stamp to v
sqm_log "Starting SQM script: ${SCRIPT} on ${IFACE}, in: ${DOWNLINK} Kbps, out: ${UPLINK} Kbps"

if fn_exists sqm_start ; then
sqm_log "Using script specific sqm_start function overriding the generic sqm_start_default."
sqm_debug "Using script specific sqm_start function overriding the generic sqm_start_default."
sqm_start && write_defaults_vars_to_state_file ${STATE_FILE} ${SQM_LIB_DIR}/defaults.sh && sqm_log "${SCRIPT} was started on ${IFACE} successfully"
else
sqm_log "Using generic sqm_start_default function."
sqm_debug "Using generic sqm_start_default function."
sqm_start_default && write_defaults_vars_to_state_file ${STATE_FILE} ${SQM_LIB_DIR}/defaults.sh && sqm_log "${SCRIPT} was started on ${IFACE} successfully"
fi

Expand Down

0 comments on commit 2cd8609

Please sign in to comment.