X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=libctsupport%2Fsyserror.cpp;h=0823ea2bbbeb609be1993fdd1051dfe7b9858231;hb=d5a70ac05a479dfb99571bcba4069008d0f3697a;hp=dfce52808afbad9e34b0d0eb9455f26e8d53102d;hpb=01ed72399d433ce45a0195f8acaea349a421461e;p=ctsim.git diff --git a/libctsupport/syserror.cpp b/libctsupport/syserror.cpp index dfce528..0823ea2 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.18 2001/01/20 08:10:33 kevin Exp $ +** $Id: syserror.cpp,v 1.23 2002/05/05 10:54:34 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 @@ -38,10 +38,9 @@ * int severity Severity of error * char *msg Error message * args Argument list, direct transfer to printf stack -* 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 void sys_error (int severity, const char *msg, ...) @@ -54,11 +53,22 @@ void sys_error (int severity, const char *msg, ...) sys_verror (strOutput, severity, msg, arg); #ifdef HAVE_WXWINDOWS - if (g_bRunningWXWindows) - wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + if (g_bRunningWXWindows) { + if (theApp) { + wxCommandEvent eventLog (wxEVT_COMMAND_MENU_SELECTED, MAINMENU_LOG_EVENT ); + wxString msg (strOutput.c_str()); + msg += "\n"; + eventLog.SetString( msg ); + // wxPostEvent( theApp->getMainFrame(), eventLog ); // send log event, thread safe + } else { + wxMutexGuiEnter(); + wxLog::OnLog (wxLOG_Message, strOutput.c_str(), time(NULL)); + wxMutexGuiLeave(); + } + } else #endif - std::cout << strOutput; + std::cout << strOutput << "\n"; va_end(arg); } @@ -74,7 +84,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; @@ -116,11 +128,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); }