X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=5b4e6315a3f993fe7f7b9af7adb73077554d3670;hb=ca7c001fce978b680543f8338a404b8c0701a935;hp=ee6980e0291779601b774ebda285b0a0807968e2;hpb=5ff5b33a6bc64fb804106c4d50b83e4cf0d7b0f4;p=ctsim.git diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index ee6980e..5b4e631 100644 --- a/libctsupport/syserror.cpp +++ b/libctsupport/syserror.cpp @@ -1,8 +1,8 @@ /***************************************************************************** ** This is part of the CTSim program -** Copyright (C) 1983-2000 Kevin Rosenberg +** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: syserror.cpp,v 1.13 2001/01/10 21:21:53 kevin Exp $ +** $Id: syserror.cpp,v 1.21 2001/02/20 04:48:45 kevin Exp $ ** ** 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 @@ -26,6 +26,9 @@ #include #include "ct.h" +#ifdef HAVE_WXWINDOWS +#include "../src/ctsim.h" +#endif /* NAME * sys_error System error handler @@ -38,9 +41,8 @@ * Can take 24 byte transfer */ -static int s_reportErrorLevel = ERR_WARNING; // Set error reporting level +static int s_reportErrorLevel = ERR_TRACE; // Set error reporting level -bool g_bRunningWXWindows = false; void sys_error (int severity, const char *msg, ...) { @@ -50,11 +52,17 @@ void sys_error (int severity, const char *msg, ...) std::string strOutput; sys_verror (strOutput, severity, msg, arg); - -// if (g_bRunningWXWindows) -// theApp->getLog() << strOutput.c_str(); -// else - std::cout << strOutput; + +#ifdef HAVE_WXWINDOWS + if (g_bRunningWXWindows) { + if (theApp) + *theApp->getLog() << strOutput.c_str() << "\n"; + else + wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + } + else +#endif + std::cout << strOutput << "\n"; va_end(arg); } @@ -70,7 +78,9 @@ void sys_verror (std::string& strOutput, int severity, const char *msg, va_list std::ostringstream os; - s_nErrorCount++; + if (severity > ERR_TRACE) + s_nErrorCount++; + if (severity != ERR_FATAL) { if (s_nErrorCount > MAX_ERROR_COUNT) return; @@ -112,11 +122,11 @@ void sys_verror (std::string& strOutput, int severity, const char *msg, va_list strncpy (errStr, sizeof(errStr), "Error message not available on this platform."); #endif - os << errStr << "\n"; + os << errStr; strOutput = os.str(); if (severity == ERR_FATAL) { - std::cerr << strOutput; + std::cerr << strOutput << "\n"; throw std::runtime_error (strOutput); }