X-Git-Url: http://git.meshlink.io/?p=catta;a=blobdiff_plain;f=src%2Flog.c;h=076ea855423eaa222404611e5f74a5d3aa22345f;hp=d159c95e1413a23098ab5ab120b3d3cd0b2cd501;hb=2c550daf4ac6a6aab7f21047c037b4dd53c57fa6;hpb=37d19f15523b6fe4d1fef2329abe421221b3d4b3 diff --git a/src/log.c b/src/log.c index d159c95..076ea85 100644 --- a/src/log.c +++ b/src/log.c @@ -1,18 +1,18 @@ /*** - This file is part of avahi. + This file is part of catta. - avahi is free software; you can redistribute it and/or modify it + catta is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. - avahi is distributed in the hope that it will be useful, but WITHOUT + catta is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public - License along with avahi; if not, write to the Free Software + License along with catta; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. ***/ @@ -24,15 +24,15 @@ #include #include -#include +#include -static AvahiLogFunction log_function = NULL; +static CattaLogFunction log_function = NULL; -void avahi_set_log_function(AvahiLogFunction function) { +void catta_set_log_function(CattaLogFunction function) { log_function = function; } -void avahi_log_ap(AvahiLogLevel level, const char*format, va_list ap) { +void catta_log_ap(CattaLogLevel level, const char*format, va_list ap) { char txt[256]; vsnprintf(txt, sizeof(txt), format, ap); @@ -43,44 +43,44 @@ void avahi_log_ap(AvahiLogLevel level, const char*format, va_list ap) { fprintf(stderr, "%s\n", txt); } -void avahi_log(AvahiLogLevel level, const char*format, ...) { +void catta_log(CattaLogLevel level, const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(level, format, ap); + catta_log_ap(level, format, ap); va_end(ap); } -void avahi_log_error(const char*format, ...) { +void catta_log_error(const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(AVAHI_LOG_ERROR, format, ap); + catta_log_ap(CATTA_LOG_ERROR, format, ap); va_end(ap); } -void avahi_log_warn(const char*format, ...) { +void catta_log_warn(const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(AVAHI_LOG_WARN, format, ap); + catta_log_ap(CATTA_LOG_WARN, format, ap); va_end(ap); } -void avahi_log_notice(const char*format, ...) { +void catta_log_notice(const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(AVAHI_LOG_NOTICE, format, ap); + catta_log_ap(CATTA_LOG_NOTICE, format, ap); va_end(ap); } -void avahi_log_info(const char*format, ...) { +void catta_log_info(const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(AVAHI_LOG_INFO, format, ap); + catta_log_ap(CATTA_LOG_INFO, format, ap); va_end(ap); } -void avahi_log_debug(const char*format, ...) { +void catta_log_debug(const char*format, ...) { va_list ap; va_start(ap, format); - avahi_log_ap(AVAHI_LOG_DEBUG, format, ap); + catta_log_ap(CATTA_LOG_DEBUG, format, ap); va_end(ap); }