]> git.madduck.net Git - etc/zsh.git/blobdiff - .zsh/logging

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Overhaul of the entire config. Yay for big diffs.
[etc/zsh.git] / .zsh / logging
index 65c9532d19b35fec27061b71a9feee333bdf1d35..c23ad42773ecedce0d7249cade478747871e9feb 100644 (file)
@@ -9,31 +9,29 @@
 #
 
 __log() {
+  setopt localoptions noxtrace
   local level; level="$1"; shift
   echo "${level}: $@" >&2
 }
 __do_debug() {
+  setopt localoptions noxtrace
   [ -n "${ZDEBUG:-}" ]
 }
 zerror() {
-  [[ -o xtrace ]] && set +x && local __XTRACE=1
+  setopt localoptions noxtrace
   __log E "$@"
-  [ "${__XTRACE:-}" ] && set -x
 }
 zwarn() {
-  [[ -o xtrace ]] && set +x && local __XTRACE=1
+  setopt localoptions noxtrace
   __log W "$@"
-  [ "${__XTRACE:-}" ] && set -x
 }
 zinfo() {
-  [[ -o xtrace ]] && set +x && local __XTRACE=1
+  setopt localoptions noxtrace
   __log I "$@"
-  [ "${__XTRACE:-}" ] && set -x
 }
 zdebug() {
-  [[ -o xtrace ]] && set +x && local __XTRACE=1
+  setopt localoptions noxtrace
   __do_debug && __log D "$@"
-  [ "${__XTRACE:-}" ] && set -x
 }
 
 # vim:ft=zsh