Revision 3e5bbd85 snf-tools/synnefo_tools/burnin/logger.py

b/snf-tools/synnefo_tools/burnin/logger.py
72 72

  
73 73
# --------------------------------------------------------------------
74 74
# Helper functions
75
def _blue(msg):
76
    """Blue color"""
77
    return "\x1b[1;34m" + str(msg) + "\x1b[0m"
75
def _cyan(msg):
76
    """Bold High Intensity Cyan color"""
77
    return "\x1b[1;96m" + str(msg) + "\x1b[0m"
78 78

  
79 79

  
80 80
def _yellow(msg):
......
467 467
                else:
468 468
                    return color_fun(msg) + "\n"
469 469
            else:
470
                args = tuple([_blue(arg) for arg in args])
470
                args = tuple([_cyan(arg) for arg in args])
471 471
                return _format_message(msg, *args)
472 472
        else:
473 473
            return _format_message(msg, *args)

Also available in: Unified diff