/* Copyright (C) 2016-2019 "IoT.bzh" author: José Bollo Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include #include "verbose.h" int verbosity = 1; #define LEVEL(x) ((x) < 0 ? 0 : (x) > 7 ? 7 : (x)) #if defined(VERBOSE_WITH_SYSLOG) #include void vverbose(int level, const char *file, int line, const char *fmt, va_list args) { char *p; if (file == NULL || vasprintf(&p, fmt, args) < 0) vsyslog(level, fmt, args); else { syslog(LEVEL(level), "%s [%s:%d]", p, file, line); free(p); } } void verbose_set_name(const char *name, int authority) { closelog(); openlog(name, LOG_PERROR, authority ? LOG_AUTH : LOG_USER); } #else #include #include #include #include static char *appname; static int appauthority; static const char *prefixes[] = { "<0> EMERGENCY", "<1> ALERT", "<2> CRITICAL", "<3> ERROR", "<4> WARNING", "<5> NOTICE", "<6> INFO", "<7> DEBUG" }; void vverbose(int level, const char *file, int line, const char *fmt, va_list args) { int saverr = errno; int tty = isatty(fileno(stderr)); errno = saverr; fprintf(stderr, "%s: ", prefixes[LEVEL(level)] + (tty ? 4 : 0)); vfprintf(stderr, fmt, args); if (file != NULL && (!tty || verbosity >5)) fprintf(stderr, " [%s:%d]\n", file, line); else fprintf(stderr, "\n"); } void verbose_set_name(const char *name, int authority) { free(appname); appname = name ? strdup(name) : NULL; appauthority = authority; } #endif void verbose(int level, const char *file, int line, const char *fmt, ...) { va_list ap; va_start(ap, fmt); vverbose(level, file, line, fmt, ap); va_end(ap); }