About 1,760,000 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 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.

  3. 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.

  4. 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, …

  5. 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?

  6. How can I use error_log() with WordPress? - Stack Overflow

    I'm trying to use error_log() in a custom WordPress plugin I am building but for some reason, I can't. When I use error_log() my site just breaks, but I'm not seeing any errors in debug.log.

  7. 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 …

  8. PHP's configuration setting 'error_log' is not working

    The log_errors option can be changed at runtime by running ini_set('log_errors', 1);, and so can the other configuration options error_reporting and error_log. Also note there is a special …

  9. How to do error logging in CodeIgniter (PHP) - Stack Overflow

    After enabling logging from the config file in the project, now you can use error_log() to print directly to the console.

  10. reference - How to write to error log file in PHP - Stack Overflow

    I want to write a message to an error log file when executing PHP code. I am trying to use the PHP error_log() function Docs. But it's not working properly for me.