Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/skitoo/raven-as3

A Sentry client for as3
https://github.com/skitoo/raven-as3

Last synced: 3 months ago
JSON representation

A Sentry client for as3

Awesome Lists containing this project

README

        

Raven-AS3
=========

Raven-as3 is a Flash/AS3 client for `Sentry `_.

::

// Instantiate a new client with a compatible DSN
var client : RavenClient = new RavenClient('http://public:[email protected]/1', '1.0', 'production');

// Capture a message
client.captureMessage('my log message');

// Capture an exception
try
{
throw new Error("an error");
}
catch(e : Error)
{
client.captureException(e);
}

Installation
------------

To install the source code:

::

$ git clone git://github.com/skitoo/raven-as3.git

Include it in your class path.

Resources
---------

* `Bug Tracker `_
* `Code `_