Now prints debug output in blue, so that you can easily differentiate it from other output.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19233 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-11-08 19:07:38 +00:00
parent 0b3ee1ecc8
commit de6b43cd7c

View File

@ -714,7 +714,9 @@ dprintf(const char *format,...)
{
va_list args;
va_start(args, format);
printf("\33[34m");
vprintf(format, args);
printf("\33[0m");
va_end(args);
}