fadilxcoder / chrome-php-logger
ChromePhp is a PHP library for the Chrome Logger Google Chrome extension
Installs: 99 585
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.2.0
This package is auto-updated.
Last update: 2024-10-17 16:14:47 UTC
README
Chrome Logger is a Google Chrome extension for debugging server side applications in the Chrome console.
Most languages include their own logging capabilities, but sometimes it is easier to see your logs right in the browser.
- Install the Google Chrome extension
- Click the extension icon in the browser to enable it for the current tab's domain
- Usage :
... use Logger\Chrome\ChromePhp; ... class User { .... ChromePhp::log('hello world'); ChromePhp::log($_SERVER); ChromePhp::warn('something went wrong!'); ... }