log: Separate thread ID from timestemp in ring buffer

When we write a log message into a log, we separate thread ID from
timestamp using ": ". However, when storing the message into the ring
buffer, we omitted the separator, e.g.:

    2013-02-27 11:49:11.852+00003745: ...
This commit is contained in:
Jiri Denemark 2013-03-25 11:35:27 +01:00
parent a950f03e16
commit a1fe02f0e9
1 changed files with 1 additions and 0 deletions

View File

@ -850,6 +850,7 @@ virLogVMessage(virLogSource source,
*/
virLogLock();
virLogStr(timestamp);
virLogStr(": ");
virLogStr(msg);
virLogUnlock();
if (emit == 0)