Title: Debug Logger
Author: Andrew Woods
Published: <strong>अप्रिल 30, 2021</strong>
Last modified: मे 3, 2021

---

प्लगिनहरू खोज्नुहोस्

यो प्लगिन **वर्डप्रेसका ३ प्रमुख नवीनतम रिलीजहरूसँग परीक्षण गरिएको छैन**। यो अब 
सम्भवतः व्यवस्थित वा समर्थन नभएको हुन सक्छ र वर्डप्रेसका नयाँ संस्करणहरूमा प्रयोग
गर्दा अनुकूलता सम्बन्धी समस्या हुन सक्छ।

![](https://s.w.org/plugins/geopattern-icon/debug-logger.svg)

# Debug Logger

 [Andrew Woods](https://profiles.wordpress.org/awoods/) द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/debug-logger.0.3.0.zip)

 * [विवरण](https://ne.wordpress.org/plugins/debug-logger/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/debug-logger/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/debug-logger/#installation)
 * [विकास](https://ne.wordpress.org/plugins/debug-logger/#developers)

 [सहायता](https://wordpress.org/support/plugin/debug-logger/)

## विवरण

As PHP moves forward, so must WordPress. This plugin helps WordPress use the tools
of modern PHP. Monolog — PHP’s most popular logging package — is a composer package.
Since WordPress doesn’t currently have a universal way to support composer, this
WordPress plugin is meant to start bridging the gap. This logger is [PSR-3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md)
compliant, a PHP standard which Monolog also uses.

### Logging Levels

There are 8 logging levels available, [defined by RFC 5424](https://tools.ietf.org/html/rfc5424).
The levels specified in
 order from the most severe to the least severe:

 * **Emergency**: system is unusable
 * **Alert**: action must be taken immediately
 * **Critical**: critical conditions
 * **Error**: error conditions
 * **Warning**: warning conditions
 * **Notice**: normal but significant condition
 * **Info**: informational messages
 * **Debug**: debug-level messages

## स्थापना

This section describes how to install the plugin and get it working.

 1. Upload the `wp-debug-logger` folder to the `/wp-content/plugins/` directory
 2. Activate the plugin through the ‘Plugins’ menu in WordPress
 3. Enable debugging in your `wp-config.php`
 4. // in your wp-config.php
     define( ‘WP_DEBUG’, true ); define( ‘WP_DEBUG_DISPLAY’,
    false ); define( ‘WP_DEBUG_LOG’, true ); define( ‘WP_DEBUG_MINIMUM_LEVEL’, ‘debug’);
 5. // For good measure, this will hide errors from being displayed on-screen
     @ini_set(‘
    display_errors’, 0);
 6. As you write your code, sprinkle in these Log methods.

#### Minimum Level

WP_DEBUG_MINIMUM_LEVEL is a new constant that determines the minimum severity level
you wish to write to your _wp-content/debug.log_ file. In your _development_ environment,
I recommend using `debug` so you can see all the errors being written. For your 
_production_ environment, I’d recommend the `error` level, so you can capture all
the significant problems. Here are the values to use: **emergency, alert, critical,
error, warning, notice, info, debug**. Note: they’re all lowercase, as the value
is case-sensitive.

#### Displaying Errors

In your **development** environment, you may choose to set `WP_DEBUG_DISPLAY` to`
true`, so the error messages show in your browser. However, I **strongly recommend**
that you do not change it, for your _production_ environment. These settings can
be placed anywhere above the line.

    ```
    /* That’s all, stop editing! Happy blogging. */
    ```

## प्रश्नोत्तर

### Why not just use the error_log function?

You still can. However, the plugin will add value to your logging efforts. Using
this logger will add structure io the debug.log file, _and_ give you a modern PHP
interface to control the amount of logging in your website. The logging methods 
in this plugin also provide information about the severity of the error.

### Where can I find more documentation?

This project is [developed on Github](https://github.com/andrewwoods/wp-debug-logger).
There is a more complete readme there, with links to supplemental information.

### Why use PSR-3?

A PSR is a PHP Standard Recommendation. PSRs are use to create and maintain interoperability
between PHP-based frameworks and content management systems.

## समीक्षाहरू

यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।

## योगदानकर्ता र डेभलपरहरू

“Debug Logger” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका
छन्।

योगदानकर्ताहरू

 *   [ Andrew Woods ](https://profiles.wordpress.org/awoods/)

[“Debug Logger” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्](https://translate.wordpress.org/projects/wp-plugins/debug-logger)

### विकासमा रुचि छ?

[आरएसएस](https://plugins.trac.wordpress.org/log/debug-logger/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/debug-logger/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/debug-logger/) हेर्नुहोस्, वा
[विकास लग](https://plugins.trac.wordpress.org/log/debug-logger/) को सदस्यता लिनुहोस्।

## चेन्जलग

#### 0.3.0

 * Add the ability to log WP_Error objects
    - Add `Log::wp_error()` and its corresponding `Logger->log_wp_error` method
    - Add method Logger->has_level() to ensure a level exists

#### 0.2.0

 * Add `Log::print()` and `Log::dump()` methods
 * Improve documentation

#### 0.1.0

 * Import PSR-3 from PHP FIG into `lib` directory
 * Create Logger class to write log
 * Create Log class to statically interact with Logger class
 * Add usage instructions and logging levels

## मेटा

 *  संस्करण **0.3.0**
 *  पछिल्लो अपडेट **5 वर्ष अघि**
 *  सक्रिय स्थापना **१० भन्दा कम**
 *  वर्डप्रेस संस्करण ** 5.7 वा उच्च **
 *  जाँच गरिएको **5.7.15**
 *  PHP संस्करण ** 7.4 वा उच्च **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/debug-logger/)
 * ट्यागहरू
 * [debug](https://ne.wordpress.org/plugins/tags/debug/)[logging](https://ne.wordpress.org/plugins/tags/logging/)
   [logs](https://ne.wordpress.org/plugins/tags/logs/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/debug-logger/advanced/)

## रेटिङ्गहरू

अहिलेसम्म कुनै समीक्षा पेस गरिएको छैन।

[Your review](https://wordpress.org/support/plugin/debug-logger/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/debug-logger/reviews/)

## योगदानकर्ताहरू

 *   [ Andrew Woods ](https://profiles.wordpress.org/awoods/)

## सहायता

केही भन्नु छ? सहयोग चाहियो?

 [सहायता फोरम हेर्नुहोस्](https://wordpress.org/support/plugin/debug-logger/)