X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fverbose.c;fp=src%2Fverbose.c;h=a91aeb1f02d2f3ca62fd463d1b8b8a6b0a639124;hb=f2584b67445ca63d3ec8e4a11202a19250434fc8;hp=53811c0017fb2d10ba353239b6fa95716237f796;hpb=9afa63b69d2061884c8fdf8227cccd1796c34879;p=src%2Fapp-framework-binder.git diff --git a/src/verbose.c b/src/verbose.c index 53811c00..a91aeb1f 100644 --- a/src/verbose.c +++ b/src/verbose.c @@ -48,6 +48,12 @@ void verbose_set_name(const char *name, int authority) #else +#include + +static const char *appname; + +static int appauthority; + static const char *prefixes[] = { "<0> EMERGENCY", "<1> ALERT", @@ -61,9 +67,11 @@ static const char *prefixes[] = { void vverbose(int level, const char *file, int line, const char *fmt, va_list args) { - fprintf(stderr, "%s: ", prefixes[LEVEL(level)]); + int tty = isatty(fileno(stderr)); + + fprintf(stderr, "%s: ", prefixes[LEVEL(level)] + (tty ? 4 : 0)); vfprintf(stderr, fmt, args); - if (file != NULL) + if (file != NULL && (!tty || verbosity >5)) fprintf(stderr, " [%s:%d]\n", file, line); else fprintf(stderr, "\n"); @@ -71,7 +79,8 @@ void vverbose(int level, const char *file, int line, const char *fmt, va_list ar void verbose_set_name(const char *name, int authority) { - fprintf(stderr, "%s: application name is '%s' for '%s'\n", prefixes[5], name, authority ? "AUTHORITY" : "USER"); + appname = name; + appauthority = authority; } #endif