https://github.com/fadilxcoder/chrome-php-packagist
Chrome Logger PSR-4
https://github.com/fadilxcoder/chrome-php-packagist
developer-tools packagist php
Last synced: 7 months ago
JSON representation
Chrome Logger PSR-4
- Host: GitHub
- URL: https://github.com/fadilxcoder/chrome-php-packagist
- Owner: fadilxcoder
- License: mit
- Created: 2022-07-17T08:05:36.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-17T10:57:26.000Z (almost 4 years ago)
- Last Synced: 2025-10-05T00:44:53.975Z (7 months ago)
- Topics: developer-tools, packagist, php
- Language: PHP
- Homepage: https://packagist.org/packages/fadilxcoder/chrome-php-logger
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Chrome PHP Logger
=======================================
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.
[](https://craig.is/) [](https://dev.to/fadilxcoder/)
- Install the [Google Chrome extension](https://chrome.google.com/webstore/detail/chrome-logger/noaneddfkdjfnfdakjjmocngnfkfehhd?hl=en)
- Click the extension
icon in the browser to **enable** it for the current tab's domain
- Usage :
```php
...
use Logger\Chrome\ChromePhp;
...
class User {
....
ChromePhp::log('hello world');
ChromePhp::log($_SERVER);
ChromePhp::warn('something went wrong!');
...
}
```
[Click for more information.](https://craig.is/writing/chrome-logger)