summaryrefslogtreecommitdiff
path: root/buildutils/msg.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildutils/msg.py')
-rw-r--r--buildutils/msg.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/buildutils/msg.py b/buildutils/msg.py
new file mode 100644
index 0000000..3b4a337
--- /dev/null
+++ b/buildutils/msg.py
@@ -0,0 +1,43 @@
+"""logging"""
+#-----------------------------------------------------------------------------
+# Copyright (C) PyZMQ Developers
+#
+# This file is part of pyzmq, copied and adapted from h5py.
+# h5py source used under the New BSD license
+#
+# h5py: <http://code.google.com/p/h5py/>
+#
+# Distributed under the terms of the New BSD License. The full license is in
+# the file COPYING.BSD, distributed as part of this software.
+#-----------------------------------------------------------------------------
+
+from __future__ import division
+
+import sys
+import logging
+
+#-----------------------------------------------------------------------------
+# Logging (adapted from h5py: http://h5py.googlecode.com)
+#-----------------------------------------------------------------------------
+
+
+logger = logging.getLogger()
+logger.setLevel(logging.INFO)
+logger.addHandler(logging.StreamHandler(sys.stderr))
+
+def debug(msg):
+ logger.debug(msg)
+
+def info(msg):
+ logger.info(msg)
+
+def fatal(msg, code=1):
+ logger.error("Fatal: " + msg)
+ exit(code)
+
+def warn(msg):
+ logger.error("Warning: " + msg)
+
+def line(c='*', width=48):
+ print(c * (width // len(c)))
+