ThirdParty/Jasy/jasy/core/Console.py

Sat, 31 Dec 2016 13:34:21 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 31 Dec 2016 13:34:21 +0100
changeset 5389
9b1c800daff3
parent 4631
5c1a96925da4
child 6048
82ad8ec9548c
permissions
-rw-r--r--

Updated copyright for 2017.

# -*- coding: utf-8 -*-

# Copyright (c) 2013 - 2017 Detlev Offenbach <detlev@die-offenbachs.de>
#

from __future__ import unicode_literals

import logging

def error(text, *argv):
    """Outputs an error message"""

    logging.error(text, *argv)

def warn(text, *argv):
    """Outputs an warning"""

    logging.warn(text, *argv)

def info(text, *argv):
    """Outputs an info message"""

    logging.info(text, *argv)

def debug(text, *argv):
    """Output a debug message"""

    logging.debug(text, *argv)

eric ide

mercurial