summaryrefslogtreecommitdiff
path: root/.zsh/logging
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2011-03-07 10:52:39 +0100
committerTobias Klauser <tklauser@distanz.ch>2011-03-07 10:52:39 +0100
commite505f702aa9cbd10a7a52ce68a8515c5435838c5 (patch)
treec8842b358054ec0a99c3cf83a09941029aa94598 /.zsh/logging
parent8fb2830a93db7a1638fa89d0a98fcb7deb4535fd (diff)
Hook up zshenv
Diffstat (limited to '.zsh/logging')
-rw-r--r--.zsh/logging44
1 files changed, 44 insertions, 0 deletions
diff --git a/.zsh/logging b/.zsh/logging
new file mode 100644
index 0000000..49de37f
--- /dev/null
+++ b/.zsh/logging
@@ -0,0 +1,44 @@
+# logging
+#
+# Logging abilities for the shell initialisation scripts
+#
+# Copyright © 1994-2008 martin f. krafft <madduck@madduck.net>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.madduck.net/etc/zsh.git
+#
+
+__log() {
+ local level; level="$1"; shift
+ echo "${level}: $@" >&2
+}
+
+__do_debug() {
+ [ -n "${ZDEBUG:-}" ]
+}
+
+error() {
+ [[ -o xtrace ]] && set +x && local __XTRACE=1
+ __log E "$@"
+ [ "${__XTRACE:-}" ] && set -x
+}
+
+warn() {
+ [[ -o xtrace ]] && set +x && local __XTRACE=1
+ __log W "$@"
+ [ "${__XTRACE:-}" ] && set -x
+}
+
+info() {
+ [[ -o xtrace ]] && set +x && local __XTRACE=1
+ __log I "$@"
+ [ "${__XTRACE:-}" ] && set -x
+}
+
+debug() {
+ [[ -o xtrace ]] && set +x && local __XTRACE=1
+ __do_debug && __log D "$@"
+ [ "${__XTRACE:-}" ] && set -x
+}
+
+# vim:ft=zsh