WP Manifestindependent plugin directory
manifest / developer / bit-log

Bit Log

A PHP debugging tool for WordPress

by wpWax · github.com/sovware/bit-log · website

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/sovware/bit-log/archive/refs/heads/main.zip

Declares an update source (https://github.com/sovware/bit-log), so updates arrive through the plugin's own updater.

Readme

Bit Log

A PHP debuggin tool for WordPress.

How to use it

Adding the logs

BitLog()->push( 'test-1', '123', __FILE__, __LINE__ );
BitLog()->push( 'test-2', '456', __FILE__, __LINE__ );

See the debug logs to this URL

example.com/wp-json/bit-log/v1/logs

You can filter the logs by the group following way.

example.com/wp-json/bit-log/v1/logs?group=test-1

Read the full README on GitHub →