Displaying 1 result from an estimated 1 matches for "verbose_prefix_1".
Did you mean:
verbose_prefix_3
2009 Jul 26
2
Verbose() messages go unnoticed
...uct ast_channel *chan, void *data)
{
...
switch (vsize) {
case 0:
- ast_verbose("%s\n", vtext);
+ ast_verbose("\x1B[103;30;1m %s \x1B[0m\n", vtext);
break;
case 1:
- ast_verbose(VERBOSE_PREFIX_1 "%s\n", vtext);
+ ast_verbose(VERBOSE_PREFIX_1 "\x1B[103;30;1m %s \x1B[0m\n", vtext);
break;
That's just an ugly hack of course but you get the idea.
I have the feeling that whenever somebody uses Verbose() there is a
reason for doing so and...