From: martin f. krafft Date: Wed, 15 Mar 2017 23:08:07 +0000 (+1300) Subject: Rename logging functions X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/fee44c904d0fe9a9809c347b0de86a1a20c61786 Rename logging functions --- diff --git a/.zsh/logging b/.zsh/logging index ad4c54a..26d7544 100644 --- a/.zsh/logging +++ b/.zsh/logging @@ -15,24 +15,24 @@ __log() { __do_debug() { [ -n "${ZDEBUG:-}" ] } -error() { +zerror() { [[ -o xtrace ]] && set +x && local __XTRACE=1 - __log E "$@" + __log E "$@" [ "${__XTRACE:-}" ] && set -x } -warn() { +zwarn() { [[ -o xtrace ]] && set +x && local __XTRACE=1 - __log W "$@" + __log W "$@" [ "${__XTRACE:-}" ] && set -x } -info() { +zinfo() { [[ -o xtrace ]] && set +x && local __XTRACE=1 - __log I "$@" + __log I "$@" [ "${__XTRACE:-}" ] && set -x } -debug() { +zdebug() { [[ -o xtrace ]] && set +x && local __XTRACE=1 - __do_debug && __log D "$@" + __do_debug && __log D "$@" [ "${__XTRACE:-}" ] && set -x } diff --git a/.zsh/sourcedir b/.zsh/sourcedir index 40f1aa0..4226915 100644 --- a/.zsh/sourcedir +++ b/.zsh/sourcedir @@ -12,15 +12,15 @@ sourcedir() { if [ ! -d "$1" ]; then - error "no such directory: $1" + zerror "no such directory: $1" return 1 fi -# debug "sourcing directory ${1#$ZDOTDIR/}" +# zdebug "sourcing directory ${1#$ZDOTDIR/}" for f in "$1"/*(.N,@N); do case "$f" in *~|*.bak|*.old|*.sw?|*.zwc|*.disabled) continue;; esac -# debug " sourcing file $f" +# zdebug " sourcing file $f" source "$f" done }