summaryrefslogtreecommitdiffhomepage
path: root/subr.rtl/rtl_platform.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-26 15:24:12 +0200
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-26 15:24:12 +0200
commit77458de033ce302d259e95b9a66c525fcf822dfc (patch)
tree644655795c04ff3f2cbe16b2bf2b48fbda48889f /subr.rtl/rtl_platform.subr
parent66e45aa9c0275f67a6690259e55b3d0bccbd5d0b (diff)
downloadmidipix_build-77458de033ce302d259e95b9a66c525fcf822dfc.tar.bz2
midipix_build-77458de033ce302d259e95b9a66c525fcf822dfc.tar.xz
Log messages at {info,notice,verbose} and {,-v,-vv}.
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 ac411c87..d510254a 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 notice "Command line: %s %s" "${_cmd}" "${*}";
+ rtl_log_msg verbose "Command line: %s %s" "${_cmd}" "${*}";
else
- rtl_log_msg notice "Command line: %s" "${_cmd}";
+ rtl_log_msg verbose "Command line: %s" "${_cmd}";
fi; ;;
*) "${_cmd}" "${@}";
esac;