All Projects → loggly → timber-loggly

loggly / timber-loggly

Licence: Apache-2.0 license
A Timber tree that posts to Loggly

Programming Languages

java
68154 projects - #9 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to timber-loggly

Next Go
Production ready blog + boilerplate for Next.js 3.X
Stars: ✭ 254 (+1311.11%)
Mutual labels:  timber
ResDelivery-Hilt-Coroutines-Mvvm-Single-Activity
This is a Sample Single Activity App (Multi Fragments) that uses Dagger-Hilt, Coroutines Flows, Paging 3 & Mvvm Clean Architecture
Stars: ✭ 28 (+55.56%)
Mutual labels:  timber
Lumberjack
Lumberjack - a customisable and extensible file/console logger for Timber
Stars: ✭ 32 (+77.78%)
Mutual labels:  timber
Android-Starter-Kit
This is up-to-date android studio project for native android application, that is using modern tools and libraries.
Stars: ✭ 16 (-11.11%)
Mutual labels:  timber
next-go
Production ready blog + boilerplate for Next.js 3.X
Stars: ✭ 255 (+1316.67%)
Mutual labels:  timber
InstantAppStarter
Starter Project Structure for Android Instant app. https://blog.mindorks.com/android-mvp-architecture-with-instant-app-support-11ba48241a82
Stars: ✭ 44 (+144.44%)
Mutual labels:  timber
Marvel
Marvel Characters Android Application Assigned by smava GmbH
Stars: ✭ 227 (+1161.11%)
Mutual labels:  timber
papertrail-timber
Pluggable timber tree for Papertrail logging
Stars: ✭ 20 (+11.11%)
Mutual labels:  timber
Instant-Weather
An Android weather application implemented using the MVVM pattern, Retrofit2, Dagger Hilt, LiveData, ViewModel, Coroutines, Room, Navigation Components, Data Binding and some other libraries from the Android Jetpack.
Stars: ✭ 677 (+3661.11%)
Mutual labels:  timber
Multiplatform-Log
Kotlin Multi Platform Logger, for android an ios : Logcat & print
Stars: ✭ 49 (+172.22%)
Mutual labels:  timber
branch
Branch Starter Theme - A WordPress starter theme based on Timber library and Bootstrap
Stars: ✭ 87 (+383.33%)
Mutual labels:  timber
slf4j-timber
SLF4J binding for Jake Wharton's Timber Android logging library
Stars: ✭ 44 (+144.44%)
Mutual labels:  timber
timber-junit-rule
A highly configurable JUnit Rule that outputs Timber logs to standard output
Stars: ✭ 42 (+133.33%)
Mutual labels:  timber
slf4j-timber
SLF4J binding for Timber - a logger with a small, extensible API which provides utility on top of Android's normal Log class.
Stars: ✭ 20 (+11.11%)
Mutual labels:  timber
wordpress-starter
Timber (Twig) + Parceljs Bundler
Stars: ✭ 19 (+5.56%)
Mutual labels:  timber
Generator Chisel
Chisel is a development framework for creating easy to maintain and fast WordPress websites
Stars: ✭ 233 (+1194.44%)
Mutual labels:  timber
19h47.fr
🔥
Stars: ✭ 25 (+38.89%)
Mutual labels:  timber
AndroidAnalytics
Analytics dispatcher for Android Applications
Stars: ✭ 37 (+105.56%)
Mutual labels:  timber
timber-js
🌲 Great Node/JS logging made easy
Stars: ✭ 43 (+138.89%)
Mutual labels:  timber
BakingApp
Udacity Android Developer Nanodegree, project 2.
Stars: ✭ 54 (+200%)
Mutual labels:  timber

timber-loggly

v1.0.1

A Timber tree for asynchronously posting log messages to Loggly.

Usage

  1. Plant a LogglyTree with your authorization token from Loggly.
import android.app.Application;
import com.github.tony19.timber.loggly.LogglyTree;
import timber.log.Timber;

public class ExampleApp extends Application {

    @Override
    public void onCreate() {
        super.onCreate();

        final String LOGGLY_TOKEN = /* your loggly token */;
        Timber.plant(new LogglyTree(LOGGLY_TOKEN));
    }
}
  1. Use Timber API to log an event via LogglyTree...
Timber.tag("foo");
Timber.i("hello world");

Download

timber-loggly-1.0.1.jar

Gradle

compile 'com.github.tony19:timber-loggly:1.0.1'
compile 'com.squareup.retrofit:retrofit:1.9.0'

Maven

<dependency>
  <groupId>com.github.tony19</groupId>
  <artifactId>timber-loggly</artifactId>
  <version>1.0.1</version>
</dependency>
<dependency>
  <groupId>com.squareup.retrofit</groupId>
  <artifactId>retrofit</artifactId>
  <version>1.9.0</version>
</dependency>

Snapshots of the development version are available in Sonatype's snapshots repository.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].