Added stack trace to exception page

This commit is contained in:
2010-04-03 22:51:22 +01:00
parent 7632741d86
commit df5721181f

View File

@@ -31,6 +31,10 @@
<th>Message</th> <th>Message</th>
<td>{$exception->getMessage()}</td> <td>{$exception->getMessage()}</td>
</tr> </tr>
<tr>
<th>Stack Trace</th>
<td><pre>{$exception->getTrace()|print_r}</pre></td>
</tr>
</tbody> </tbody>
</table> </table>