--- deliantra/server/common/logger.C 2006/09/10 16:00:23 1.4 +++ deliantra/server/common/logger.C 2006/12/11 19:46:46 1.6 @@ -1,9 +1,3 @@ - -/* - * static char *rcsid_loger_c = - * "$Id: logger.C,v 1.4 2006/09/10 16:00:23 root Exp $ "; - */ - /* CrossFire, A Multiplayer game for X-windows @@ -24,7 +18,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - The authors can be reached via e-mail at crossfire-devel@real-time.com + The authors can be reached via e-mail at */ @@ -64,16 +58,7 @@ { vsnprintf (buf, sizeof (buf), format, ap); strncat (tbuf, buf, 20460); -#ifdef WIN32 /* ---win32 change log handling for win32 */ - fputs (tbuf, logfile); /* wrote to file or stdout */ -# ifdef DEBUG /* if we have a debug version, we want see ALL output */ - fflush (logfile); /* so flush this! */ -# endif - if (logfile != stderr) /* if was it a logfile wrote it to screen too */ - fputs (tbuf, stderr); -#else fputs (tbuf, logfile); -#endif } if (!exiting && !trying_emergency_save && logLevel == llevError && ++nroferrors > MAX_ERRORS) {