Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/skitoo/raven-as3
- Owner: skitoo
- License: mit
- Created: 2012-06-14T14:06:40.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T13:00:45.000Z (almost 7 years ago)
- Last Synced: 2024-06-23T23:43:51.676Z (5 months ago)
- Language: ActionScript
- Size: 1.05 MB
- Stars: 16
- Watchers: 5
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-actionscript-sorted - raven-as3 - A Sentry client for as3 (API / Other API)
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 `_