google-code-backups / rsslounge

Automatically exported from code.google.com/p/rsslounge
0 stars 0 forks source link

Feature request: write php error details to the php error log #89

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

1. Either: Try adding a feed when there are database schema problems
2. or: Issue any HTTP request that will fail with a PHP exception

What is the expected output? What do you see instead?

I'd expected to see the details of any PHP errors written to the php error log.

What version of the product are you using? On what operating system?

rsslounge 1.7
Apache 2.2
MySQL 5.5
Windows 7

Please provide any additional information below.

As a quick bodge, I added the following lines to:
application/controllers/ErrorController.php

        foreach ($errors as $error)
        {
            error_log ($error);
        }

Original issue reported on code.google.com by james.ga...@gmail.com on 22 Dec 2011 at 1:19