ensure_packages_of_tags() {
 prefixed_msg_init 'ensure_packages_of_tags'
-prefixed_msg 'starting'
 
 _APT_ARG="-q -q -o 'Dpkg::Options::=--force-confnew' install"
 for _TAG in $@; do
         apt_get_digested "${_APT_ARG} ${_PACKAGES}"
     fi
 done
-prefixed_msg 'finished'
 prefixed_msg_exit
 }
 
 minimize_installation() {
 prefixed_msg_init 'minimize_installation'
 _INSTALL_TAGS="$@"
-prefixed_msg "starting (narrow system to what is required explicitly by Debian and by us, as per these INSTALL_TAGS: ${_INSTALL_TAGS})"
+prefixed_msg "narrow system to what is required explicitly by Debian and by us, as per these INSTALL_TAGS: ${_INSTALL_TAGS}"
 
 _TOK_REQ='required'
 _PATH_LIST_PREFIX=/tmp/list_
 prefixed_msg 'run autopurge to get rid of all unwanted packages …'
 apt_get_digested '-q -q autopurge'
 
-prefixed_msg 'finished'
 prefixed_msg_exit
 }