예제 #1
0
//////////////////////////////
/// ERROR LOGGER
//////////////////////////////
void error_logger(const Exception & e) {

  // Open the log file.
  File error_log("errorlog.txt");
  
  // Message for dual-output.
  string message = "Exception " + int_to_str(e.error_code()) + ": " +
                   e.error_message();
  
  // Insert a new line at the end with the error code and message.
  error_log.insert_line(error_log.num_lines(), message);
  
  // Close and save the file.
  error_log.close(true);
  
  // Output to standard out, too.
  cout << message << endl;

}
예제 #2
0
파일: errorlog.cpp 프로젝트: gsteelman/mst
//////////////////////////////////////////////////////////////////////
/// @fn ErrorLog(Exception e, string filename)
/// @brief -- Takes an Exception and reports the error to a log file
///           as denoted by filename.
//////////////////////////////////////////////////////////////////////
ErrorLog::ErrorLog(Exception e, string filename) {

  // Open a log file (creates it if one doesn't exist).
  File log_file(filename);

  // Get the time from the system.
  time_t curr_time;
  time(&curr_time);

  // Char array for ctime_s (function guarantees a return size of 26)
  char time_char[26];

  // Retrieve.
  ctime_s(time_char, sizeof(time_char), &curr_time);

  // A string for us to store it in.
  string time_str = time_char;

  // ctime() includes a '\n' character at the end, and
  // we don't want that.
  time_str = "[" + str_left(time_str, time_str.length() - 1) + "]";

  // Insert the date/time the error was found.
  string error_line = time_str;

  // Add the error code.
  error_line += " Error " + int_to_str(e.error_code());

  // And the error message.
  error_line += ": " + e.error_message();

  // Put it at the end of the file.
  log_file.insert_line(log_file.num_lines(), error_line);

  log_file.save_file();

  log_file.close();

}