About 72 results
Open links in new tab
  1. logging - When to use the different log levels - Stack Overflow

    There are different ways to log messages, in order of fatality: (for Log4j) FATAL ERROR WARN INFO DEBUG TRACE How do I decide when to use which? What's a good heuristic to use?

  2. Where are PHP errors logged to if the error_log directive simply says ...

    I ran phpinfo() and the error_log directive simply says error_log. What file is that referring to? i.e. what would the full path to the error_log be?

  3. Where can I find error log files for PHP? - Stack Overflow

    Oct 11, 2012 · Where can I find error log files? I need to check them for solving an internal server error shown after installing suPHP.

  4. Quiero revisar el registro de errores de PHP, ¿dónde lo encuentro?

    Nov 11, 2017 · Para acceder al log de errores de PHP si estamos desarrollando con XAMPP en Windows (versión 3.x): Abrir el panel de control de XAMPP. Para el servicio Apache clicar el botón …

  5. Where does PHP's error log reside in XAMPP? - Stack Overflow

    Sep 15, 2010 · 3 Look in your configuration file and search for the error_log setting. Or use phpinfo () to find this setting.

  6. What is the location of Laravel's error logs? - Stack Overflow

    Aug 24, 2023 · The location of the log file can be found inside channels array config/logging.php (See below) In case if some one is looking to write to the single channel, using Laravel's Log Facade, …

  7. How do I log errors and warnings into a file? - Stack Overflow

    Aug 20, 2010 · When the log_errors directive is set to On, any errors reported by PHP would be logged to the server log or the file specified with error_log. You can set these options with ini_set too, if you …

  8. php - Where is the error_log file? - Stack Overflow

    Apr 10, 2017 · 1 Try \xampp\apache\logs\error.log where xampp is your installation folder. If you haven't changed the error_log setting in PHP (check with phpinfo ()), it will be logged to the Apache log.

  9. Where are the Apache and PHP log files? - Ask Ubuntu

    You can check the value of the error_log PHP configuration by running phpinfo(); in your PHP code. Note that both the directory of this log file and the log file itself needs to be writable by the Apache …

  10. Where does PHP store the error log? (PHP 5, Apache, FastCGI, and …

    For those looking for a Windows solution, use php --info | findstr /r /c:"error_log" to see where the log file is.