Title: WP Log Action
Author: webheadcoder
Published: <strong>अक्टोबर 4, 2016</strong>
Last modified: मे 6, 2025

---

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

![](https://s.w.org/plugins/geopattern-icon/wp-log-action.svg)

# WP Log Action

 [webheadcoder](https://profiles.wordpress.org/webheadllc/) द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/wp-log-action.0.54.zip)

 * [विवरण](https://ne.wordpress.org/plugins/wp-log-action/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/wp-log-action/#reviews)
 * [विकास](https://ne.wordpress.org/plugins/wp-log-action/#developers)

 [सहायता](https://wordpress.org/support/plugin/wp-log-action/)

## विवरण

This plugin uses hooks in the opposite way most plugins do. You add `do_action` 
where you want to do some logging and this plugin will save it to the database only
when active.

#### Log Activity

This plugin now logs plugin activity (when activated, deactivated, deleted, updated,
installed), when wordpress is updated, and when functions are used wrong or deprecated.

Example:

    ```
    do_action( 'wp_log_info', 'So far ok', 'Details of what is ok.' );
    if ( $something_bad_happened ) {
        do_action( 'wp_log_error', 'This Happened!', 'Details of what happened.' );
        ...
    }
    ```

See Tools->Logs to view, delete, and export the logs on the admin side. Only users
with the manage_options capability will have access.

This plugin automatically logs deprecated and doing_it_wrong errors. The rest is
what you add to your code.

You can log what functions will be run for a specific action or filter. For example
if you want to see what runs in the ‘init’ hook:

    ```
    function check_init_hook() {
        do_action( 'wp_log_debug_hook', 'init' );
    }
    add_filter( 'init', 'check_init_hook', 0 );
    ```

The following are the different levels of logging to add to your code. You can use
any level how you see fit, the descriptions of each level are just guidelines.

#### Emergency

System is unusable
 do_action( ‘wp_log_emergency’, $label, $message );

#### Alert

Action must be taken immediately.
 do_action( ‘wp_log_alert’, $label, $message );

#### Critical

Critical conditions.
 do_action( ‘wp_log_critical’, $label, $message );

#### Error

Runtime errors that do not require immediate action but should typically be logged
and monitored.
 do_action( ‘wp_log_error’, $label, $message );

#### Warning

Exceptional occurrences that are not errors.
 do_action( ‘wp_log_warning’, $label,
$message );

#### Notice

Normal but significant events.
 do_action( ‘wp_log_notice’, $label, $message );

#### Info

Interesting events.
 do_action( ‘wp_log_info’, $label, $message );

#### Debug

Detailed debug information.
 do_action( ‘wp_log_debug’, $label, $message );

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

![](https://secure.gravatar.com/avatar/3bc838609d594e5354565af940cac3f81f267b0d8e6f3d3498660e4aff8717a3?
s=60&d=retro&r=g)

### 󠀁[Great Plugin](https://wordpress.org/support/topic/greta-plugin-5/)󠁿

 [mungle](https://profiles.wordpress.org/mungle/) अक्टोबर 17, 2016

Simple, easy and powerful! Love it!

 [ सबै 1 समीक्षा पढ्नुहोस् ](https://wordpress.org/support/plugin/wp-log-action/reviews/)

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

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

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

 *   [ webheadcoder ](https://profiles.wordpress.org/webheadllc/)

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

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

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

## चेन्जलग

#### 0.54

Fixed cron job not running.
 Updated delete function.

#### 0.53

Security enhancements.

#### 0.51

Fixed timezone error.
 Fixed PHP warnings.

#### 0.50

Added automatic deleting of logs based on options.
 By default, logs will be deleted
12 months after its created. Existing users need to re-save their settings or reactivate
the plugin.

#### 0.40

Added logging when plugin and core are updated.

#### 0.34

Fixed silly microsoft bug by making the ID column name lower case in export. Thanks
to @clratliff for letting me know!

#### 0.33

Fixed exporting of logs.

#### 0.32

Updated delete to use POST instead of GET.
 Fixed pages displaying all rows instead
of just 25 rows.

#### 0.31

Fixed search losing parameters when going to the next page on view log screen.

#### 0.3

Added Export Results option in Bulk Actions.

#### 0.22

Fix option name not defined.

#### 0.21

Fix css and js not loading.
 Add options page.

#### 0.2

Change default order of table to descending.
 Print arrays so it’s readable even
though it’s ugly. Update readme.

#### 0.1

Initial release.

## मेटा

 *  संस्करण **0.54**
 *  पछिल्लो अपडेट **1 वर्ष अघि**
 *  सक्रिय स्थापना **30+**
 *  वर्डप्रेस संस्करण ** 5.3 वा उच्च **
 *  जाँच गरिएको **6.8.5**
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/wp-log-action/)
 * ट्यागहरू
 * [activity](https://ne.wordpress.org/plugins/tags/activity/)[debug](https://ne.wordpress.org/plugins/tags/debug/)
   [developer tool](https://ne.wordpress.org/plugins/tags/developer-tool/)[log](https://ne.wordpress.org/plugins/tags/log/)
   [warning](https://ne.wordpress.org/plugins/tags/warning/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/wp-log-action/advanced/)

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

 ५ मा 5 तारा।

 *  [  1 5-तारा समीक्षा     ](https://wordpress.org/support/plugin/wp-log-action/reviews/?filter=5)
 *  [  0 4-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/wp-log-action/reviews/?filter=4)
 *  [  0 3-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/wp-log-action/reviews/?filter=3)
 *  [  0 2-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/wp-log-action/reviews/?filter=2)
 *  [  0 1-तारा समीक्षाहरू     ](https://wordpress.org/support/plugin/wp-log-action/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wp-log-action/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/wp-log-action/reviews/)

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

 *   [ webheadcoder ](https://profiles.wordpress.org/webheadllc/)

## सहायता

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

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

## दान गर्नुहोस्

के तपाईँ यस प्लगिनको उन्नतिको लागि सहायता गर्न चाहनुहुन्छ?

 [ यो प्लगिनको लागि दान गर्नुहोस् ](http://webheadcoder.com/donate-wp-log-action)