About 1,770,000 results
Open links in new tab
  1. 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.

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

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

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

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

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

  7. How to log exceptions in JavaScript - Stack Overflow

    Aug 6, 2009 · Finally a shameless plug - the JSNLog project I'm working on lets you insert loggers in your JavaScript, and automatically inserts the log messages in your existing server side log. …

  8. How can I set the PHP error log on Windows? - Stack Overflow

    Sep 25, 2021 · 1 I'm having trouble enabling error logs in the php.ini file. Whenever I uncomment this line where the log file is stored, the Wampserver icon stays orange.

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

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