Code Monkey home page Code Monkey logo

unity3d-raven-cs's Introduction

Unity3D-Raven-CS

Installation

Directly import the package into your project. The example folder can be omitted.

How To Use

// Create a new Unity3DRavenCS instance before using it.
// A gameobject will be created in scene and won't be destroyed until the game ends.
// All messages captured by Unity3DRavenCS instance are sent to sentry server asynchronously without blocking the main thread.
Unity3DRavenCS.Unity3DRavenCS.NewInstance(/*DSN*/);

Unity3DRavenCS.Unity3DRavenCS client = Unity3DRavenCS.Unity3DRavenCS.instance;

// Send message to sentry server.
client.CaptureMessage("Hello, world!", LogType.Log);

// Capture exception
try
{
    /*
    * throws exception
    */
}
catch (Exception e)
{
    client.CaptureException(e);
}

You can also send all log messages including unhandled exceptions to sentry automatically by providing a log handler.

public void LogHandler(string condition, string stackTrace, LogType type)
{
    if (type == LogType.Exception)
    {
        client.CaptureException(condition, stackTrace);
    }
    else
    {
        client.CaptureMessage(condition, type);
    }
}

void OnEnable()
{
    Application.logMessageReceived += LogHandler;
}

void OnDisable()
{
    Application.logMessageReceived -= LogHandler;
}

Please check the /Assets/Example/example.cs for full example.

unity3d-raven-cs's People

Contributors

azurebyte avatar defmys avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

unity3d-raven-cs's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.