/* * ----------------------------------------------------------------------------- * * Author: Markus Moeller (markus_moeller at compuserve.com) * * Copyright (C) 2007 Markus Moeller. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. * * ----------------------------------------------------------------------------- */ #include "squid.h" #ifdef HAVE_LDAP #include "support.h" #ifdef HAVE_TIME_H #include #endif const char * LogTime() { struct tm *tm; struct timeval now; static time_t last_t = 0; static char buf[128]; gettimeofday(&now, NULL); if (now.tv_sec != last_t) { time_t tmp = now.tv_sec; tm = localtime(&tmp); strftime(buf, 127, "%Y/%m/%d %H:%M:%S", tm); last_t = now.tv_sec; } return buf; } /* default off */ int log_enabled = 0; #ifndef __GNUC__ /* under gcc a macro define in compat/debug.h is used instead */ void log(char *format,...) { if (!log_enabled) return; va_list args; va_start(args, format); vfprintf(stderr, format, args); va_end(args); } void error(char *format,...) { va_list args; va_start(args, format); vfprintf(stderr, format, args); va_end(args); } void warn(char *format,...) { va_list args; va_start(args, format); vfprintf(stderr, format, args); va_end(args); } #endif /* __GNUC__ */ #endif