summaryrefslogtreecommitdiffhomepage
path: root/subr.rtl/rtl_platform.subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr.rtl/rtl_platform.subr')
-rw-r--r--subr.rtl/rtl_platform.subr4
1 files changed, 2 insertions, 2 deletions
diff --git a/subr.rtl/rtl_platform.subr b/subr.rtl/rtl_platform.subr
index d510254a..af3365eb 100644
--- a/subr.rtl/rtl_platform.subr
+++ b/subr.rtl/rtl_platform.subr
@@ -86,9 +86,9 @@ rtl_rc() {
local _nflag="${1}" _cmd="${2}"; shift 2;
case "${_nflag}" in
1) if [ "${#}" -gt 0 ]; then
- rtl_log_msg verbose "Command line: %s %s" "${_cmd}" "${*}";
+ rtl_log_msg "verbose" "Command line: %s %s" "${_cmd}" "${*}";
else
- rtl_log_msg verbose "Command line: %s" "${_cmd}";
+ rtl_log_msg "verbose" "Command line: %s" "${_cmd}";
fi; ;;
*) "${_cmd}" "${@}";
esac;