ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/logger.C
(Generate patch)

Comparing deliantra/server/common/logger.C (file contents):
Revision 1.3 by root, Tue Aug 29 08:01:35 2006 UTC vs.
Revision 1.7 by root, Sat Dec 30 10:16:10 2006 UTC

1/*
2 * static char *rcsid_loger_c =
3 * "$Id: logger.C,v 1.3 2006/08/29 08:01:35 root Exp $ ";
4 */
5
6/* 1/*
7 CrossFire, A Multiplayer game for X-windows 2 CrossFire, A Multiplayer game for X-windows
8 3
9 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10 Copyright (C) 1992 Frank Tore Johansen 5 Copyright (C) 1992 Frank Tore Johansen
21 16
22 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software 18 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 20
26 The authors can be reached via e-mail at crossfire-devel@real-time.com 21 The authors can be reached via e-mail at <crossfire@schmorp.de>
27*/ 22*/
28 23
29 24
30#include <stdarg.h> 25#include <stdarg.h>
31#include <global.h> 26#include <global.h>
38 * 33 *
39 * See include/logger.h for possible logLevels. Messages with llevInfo 34 * See include/logger.h for possible logLevels. Messages with llevInfo
40 * and llevError are always printed, regardless of debug mode. 35 * and llevError are always printed, regardless of debug mode.
41 */ 36 */
42 37
38void
43void LOG (LogLevel logLevel, const char *format, ...) 39LOG (LogLevel logLevel, const char *format, ...)
44{ 40{
41 if (logLevel <= settings.debug)
42 {
45 char buf[20480]; /* This needs to be really really big - larger 43 char buf[20480]; /* This needs to be really really big - larger
46 * than any other buffer, since that buffer may 44 * than any other buffer, since that buffer may
47 * need to be put in this one. 45 * need to be put in this one.
48 */ 46 */
49 char tbuf[20480]; 47 char tbuf[20480];
50 48
51 time_t curtime = time (NULL); 49 time_t curtime = time (NULL);
52 struct tm *ptime = localtime (&curtime); 50 struct tm *ptime = localtime (&curtime);
53 51
54 strftime (tbuf, 256, "%Y-%m-%d %H:%M:%S ", ptime); 52 strftime (tbuf, 256, "%Y-%m-%d %H:%M:%S ", ptime);
55 53
56 va_list ap; 54 va_list ap;
57 va_start(ap, format);
58 55
59 buf[0] = '\0'; 56 va_start (ap, format);
60 if (logLevel <= settings.debug) 57
61 {
62 vsnprintf(buf, sizeof (buf), format, ap); 58 vsnprintf (buf, sizeof (buf), format, ap);
63 strncat(tbuf, buf, 20460); 59 strncat (tbuf, buf, 20460);
64#ifdef WIN32 /* ---win32 change log handling for win32 */
65 fputs(tbuf, logfile); /* wrote to file or stdout */
66#ifdef DEBUG /* if we have a debug version, we want see ALL output */
67 fflush(logfile); /* so flush this! */
68#endif
69 if(logfile != stderr) /* if was it a logfile wrote it to screen too */
70 fputs(tbuf, stderr);
71#else
72 fputs(tbuf, logfile); 60 fputs (tbuf, logfile);
73#endif 61 fputs (tbuf, stderr);
74 } 62
75 if (!exiting && !trying_emergency_save &&
76 logLevel == llevError && ++nroferrors > MAX_ERRORS) {
77 exiting = 1;
78 if (!trying_emergency_save)
79 emergency_save(0);
80 }
81 va_end(ap); 63 va_end (ap);
64 }
82} 65}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines