All Projects → ccampbell → Chromephp

ccampbell / Chromephp

class for logging PHP variables to Google Chrome console

Projects that are alternatives of or similar to Chromephp

Clog
Package clog is a channel-based logging package for Go
Stars: ✭ 151 (-88.72%)
Mutual labels:  console, logging
Chromelogger Python
Python library for logging variables to Google Chrome console
Stars: ✭ 232 (-82.67%)
Mutual labels:  console, logging
Quicklogger
Library for logging on files, console, memory, email, rest, eventlog, syslog, slack, telegram, redis, logstash, elasticsearch, influxdb, graylog, Sentry, Twilio, ide debug messages and throw events for Delphi/Firemonkey/freepascal/.NET (Windows/Linux/OSX/IOS/Android).
Stars: ✭ 137 (-89.77%)
Mutual labels:  console, logging
Console Logging
Better, prettier commandline logging for Python--with colors! 👻
Stars: ✭ 111 (-91.71%)
Mutual labels:  console, logging
Yurnalist
An elegant console reporter, borrowed from Yarn
Stars: ✭ 88 (-93.43%)
Mutual labels:  console, logging
Home
Project Glimpse: Node Edition - Spend less time debugging and more time developing.
Stars: ✭ 260 (-80.58%)
Mutual labels:  console, logging
Logging
Powershell Logging Module
Stars: ✭ 167 (-87.53%)
Mutual labels:  console, logging
Loglevelnext
A modern logging library for Node.js that provides log level mapping to the console
Stars: ✭ 33 (-97.54%)
Mutual labels:  console, logging
Electron Log
Just a simple logging module for your Electron application
Stars: ✭ 765 (-42.87%)
Mutual labels:  console, logging
Console
OS X console application.
Stars: ✭ 298 (-77.74%)
Mutual labels:  console, logging
Logging Helpers
Basic template helpers for printing messages out to the console. Useful for debugging context in templates. Should work with any template engine.
Stars: ✭ 5 (-99.63%)
Mutual labels:  console, logging
Node Draftlog
📜 Create updatable log lines into the terminal, and give life to your logs!
Stars: ✭ 1,117 (-16.58%)
Mutual labels:  console, logging
Zio Logging
Simple logging for ZIO apps, with correlation, context & pluggable backends out of the box.
Stars: ✭ 85 (-93.65%)
Mutual labels:  logging
Systemdlogger
Exports systemd logs to an external service, eg cloudwatch, elasticsearch
Stars: ✭ 91 (-93.2%)
Mutual labels:  logging
Vlog
An in-display logging library for Android 📲
Stars: ✭ 86 (-93.58%)
Mutual labels:  logging
Journal
A reasonable logging library for Scala
Stars: ✭ 85 (-93.65%)
Mutual labels:  logging
Lumberjack
Chop and cut Angular logs like a professional lumberjack.
Stars: ✭ 93 (-93.05%)
Mutual labels:  logging
Nodejs Logging
Node.js client for Stackdriver Logging: Store, search, analyze, monitor, and alert on log data and events from Google Cloud Platform and Amazon Web Services (AWS).
Stars: ✭ 91 (-93.2%)
Mutual labels:  logging
Kail
kubernetes log viewer
Stars: ✭ 1,259 (-5.97%)
Mutual labels:  logging
Flogger
A Fluent Logging API for Java
Stars: ✭ 1,257 (-6.12%)
Mutual labels:  logging

Overview

ChromePhp is a PHP library for the Chrome Logger Google Chrome extension.

This library allows you to log variables to the Chrome console.

Requirements

  • PHP 5 or later

Installation

  1. Install the Chrome extension from: https://chrome.google.com/extensions/detail/noaneddfkdjfnfdakjjmocngnfkfehhd

  2. Click the extension icon in the browser to enable it for the current tab's domain

  3. Put ChromePhp.php somewhere in your PHP include path

  4. Log some data

    include 'ChromePhp.php';
    ChromePhp::log('Hello console!');
    ChromePhp::log($_SERVER);
    ChromePhp::warn('something went wrong!');
    

More information can be found here: http://www.chromelogger.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].