Added identing for MEDIUM and HIGH verbosities.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5574 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -45,9 +45,20 @@ ConsoleListener::OnWarning(const char *message) const
|
||||
void
|
||||
ConsoleListener::OnUpdate(VerbosityLevel level, const char *message) const
|
||||
{
|
||||
if (Level() > VERBOSITY_NONE && level <= Level())
|
||||
if (Level() > VERBOSITY_NONE && level <= Level()) {
|
||||
switch (level) {
|
||||
case VERBOSITY_MEDIUM:
|
||||
printf(" ");
|
||||
break;
|
||||
case VERBOSITY_HIGH:
|
||||
printf(" ");
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
printf("%s\n", message);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
ConsoleListener::OnCompletion(bool successful, const char *message) const
|
||||
|
||||
Reference in New Issue
Block a user