Skip to content

sclements/raven-as3

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:secret@example.com/1');

// 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

About

A Sentry client for as3

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • ActionScript 100.0%