# OpenCensus Logging Trace Exporter
[![Build Status][travis-image]][travis-url]
[![Windows Build Status][appveyor-image]][appveyor-url]
[![Maven Central][maven-image]][maven-url]

The *OpenCensus Logging trace exporter* is a trace exporter that logs all data to the system log.

## Quickstart

### Add the dependencies to your project

For Maven add to your `pom.xml`:
```xml

  
    io.opencensus
    opencensus-api
    0.16.1
  
  
    io.opencensus
    opencensus-exporter-trace-logging
    0.16.1
  
  
    io.opencensus
    opencensus-impl
    0.16.1
    runtime
  

```

For Gradle add to your dependencies:
```gradle
compile 'io.opencensus:opencensus-api:0.16.1'
compile 'io.opencensus:opencensus-exporter-trace-logging:0.16.1'
runtime 'io.opencensus:opencensus-impl:0.16.1'
```

### Register the exporter

```java
public class MyMainClass {
  public static void main(String[] args) throws Exception {
    LoggingTraceExporter.register();
    // ...
  }
}
```

[travis-image]: https://travis-ci.org/census-instrumentation/opencensus-java.svg?branch=master
[travis-url]: https://travis-ci.org/census-instrumentation/opencensus-java
[appveyor-image]: https://ci.appveyor.com/api/projects/status/hxthmpkxar4jq4be/branch/master?svg=true
[appveyor-url]: https://ci.appveyor.com/project/opencensusjavateam/opencensus-java/branch/master
[maven-image]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-exporter-trace-logging/badge.svg
[maven-url]: https://maven-badges.herokuapp.com/maven-central/io.opencensus/opencensus-exporter-trace-logging