Loginator

Loginator Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,036 downloads
Loginator Icon

Try plugin: Loginator

We'll create fresh WordPress site with Loginator installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Loginator

Adds a simple global function for logging to files for developers.

0


0


0


0


0

updated: 1 year ago
since: 3 years ago
author: Poly Plugins

Description

About
Debugging WordPress can sometimes be a pain, our goal is to make it easy, which is why Loginator was built with this in mind. From creating a log folder, to securing it from prying eyes, Loginator is here to save you time and resources, so you can focus on creating astonishing applications. Once activated, Loginator essentially becomes a core part of WordPress, which is why we disable deactivation as it is highly recommended to not uninstall Loginator until you have removed all references to the loginator function inside your WordPress installation.

Update
2.0 has been released with backwards compatibility with 1.0. Your loginator function calls will still work so you can continue to use it, or our new static methods.

Functional Example

loginator('Logging this message', array('flag => 'd', 'id' => '', 'file' => 'logger', 'pipedream' => 'https://your-id-here.m.pipedream.net'));

Static Method Examples

Loginator::emergency('log data here'); // Email triggers to site admin or configured emails
Loginator::alert('log data here');
Loginator::critical('log data here'); // Email triggers to site admin or configured emails
Loginator::error('log data here');
Loginator::warning('log data here');
Loginator::notice('log data here');
Loginator::info('log data here');
Loginator::debug('log data here'); // PipeDream flag is set to true by default
Loginator::success('log data here');

You can also pass arguments

$args = array(
  'flag'      => 'd',
  'id'        => 23,
  'file'      => 'test',
  'pipedream' => false,
);

Loginator::info('log data here', $args);

Features:

  • Global Enable/Disable
  • Flags for Errors, Debug, and Info
  • Creates separate files based on flags
    Our beautiful comments follow WordPress Developer Standards, that when paired with Visual Studio Code or other supporting IDE\’s will elaborately explain how to use the loginator function
  • Auto detect if data being logged is an array and pretty prints it to the file
  • Disable Loginator deactivation to prevent function not existing errors
  • Email on CRITICAL flag
  • Pipe Dream logging