1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
/*******************************************************************************
*
* Copyright (c) 2004 Guillaume Cottenceau
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* 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.
*
******************************************************************************/
#ifndef _LOG_H_
#define _LOG_H_
time_t get_current_time(void);
double get_current_time_exact(void);
extern char current_date[50];
char* get_current_date(void);
enum output_types { OUTPUT_TYPE_DEBUG, OUTPUT_TYPE_CONNECT, OUTPUT_TYPE_INFO, OUTPUT_TYPE_ERROR };
extern int debug_mode;
extern int output_type;
#ifndef __GNUC__
# define __attribute__(x) /*nothing*/
#endif
void logging_init(int portnum);
void l_(int wanted_output_type, char* file, long line, const char* func, char* fmt, ...) __attribute__((format(printf,5,6)));
#define l0(wanted_output_type, f) l_(wanted_output_type, __FILE__, (long) __LINE__, __func__, f)
#define l1(wanted_output_type, f, a1) l_(wanted_output_type, __FILE__, (long) __LINE__, __func__, f, a1)
#define l2(wanted_output_type, f, a1, a2) l_(wanted_output_type, __FILE__, (long) __LINE__, __func__, f, a1, a2)
#define l3(wanted_output_type, f, a1, a2, a3) l_(wanted_output_type, __FILE__, (long) __LINE__, __func__, f, a1, a2, a3)
#define l4(wanted_output_type, f, a1, a2, a3, a4) l_(wanted_output_type, __FILE__, (long) __LINE__, __func__, f, a1, a2, a3, a4)
#endif
|