Revision: 3002
          https://sourceforge.net/p/mrbs/code/3002/
Author:   cimorrison
Date:     2015-02-07 10:39:32 +0000 (Sat, 07 Feb 2015)
Log Message:
-----------
Added a stack trace to the fatal_error error log

Modified Paths:
--------------
    mrbs/trunk/web/functions.inc

Modified: mrbs/trunk/web/functions.inc
===================================================================
--- mrbs/trunk/web/functions.inc        2015-02-03 15:41:40 UTC (rev 3001)
+++ mrbs/trunk/web/functions.inc        2015-02-07 10:39:32 UTC (rev 3002)
@@ -1568,6 +1568,9 @@
     error_log("MRBS: $sql_error");
   }
   
+  $e = new Exception();
+  error_log($e->getTraceAsString());
+  
   if ($show_form_data)
   {
     if (!empty($_GET))
------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to