summaryrefslogtreecommitdiffstats
path: root/ship
diff options
context:
space:
mode:
authormakefu <root@pigstarter.de>2013-12-17 19:58:16 +0100
committermakefu <root@pigstarter.de>2013-12-17 19:58:16 +0100
commit409397a8fc2a1f1d734b0b1893fc364cc635a3ec (patch)
treeb9c4193e7a03dcb86e71e209876ec304720fdf19 /ship
parente5402109288b9cef3ca6bedc25cfbbec6c9e6fef (diff)
ship/lib: add color logger
Diffstat (limited to 'ship')
-rw-r--r--ship/lib/color7
1 files changed, 7 insertions, 0 deletions
diff --git a/ship/lib/color b/ship/lib/color
new file mode 100644
index 00000000..cec2044e
--- /dev/null
+++ b/ship/lib/color
@@ -0,0 +1,7 @@
+# superseed logging with color
+green='\e[0;32m'
+red='\e[0;31m'
+nc='\e[0m'
+msg() { printf "$*\n" >&2; }
+info() { msg "$green$*$nc"; }
+error() { msg "$green$*$nc"; }