Remove several CR chars in log messages
authorPatrick McCarty <patrick.mccarty@linux.intel.com>
Mon, 26 Aug 2013 17:45:45 +0000 (10:45 -0700)
committerGerrit Code Review <gerrit2@otctools.jf.intel.com>
Wed, 28 Aug 2013 09:30:09 +0000 (02:30 -0700)
commit425b507b9050486ff679ffec70ff3ffe43bf422d
tree8eb71386c1996252c5736e04aec5fdf2ccb45c5e
parent646a5f86ae5ffb6b24fa4e1bbc0947d42a43b0d4
Remove several CR chars in log messages

When msger functions are called in an environment where the TTY supports
color, and the log messages begin with a carriage return (CR), then
message headers are formatted differently than they would be without the
CR.

For msger Info messages, it looks like:

  \033[2K\033[32m\rInfo:\033[0m

and is interpreted as:

  1. Clear the entire line
  2. Change color code to 32
  3. Print "\rInfo:"
  4. Reset color code

This logic makes sense for messages that begin with a CR but do not end
with a newline, since TTYs on Linux will expect either a '\n' or a
'\r\n' combination. However, I don't see a situation where MIC needs to
log messages with the leading CR.

To avoid the above logic, remove the CR characters from existing log
messages so that newlines are always added when the messages are
printed.

Change-Id: Ib98ad1a7217033aeb1644098fea5b907d4f4729d
mic/utils/grabber.py
mic/utils/rpmmisc.py