Giter Site home page Giter Site logo

vndly / trail Goto Github PK

View Code? Open in Web Editor NEW
13.0 2.0 3.0 67 KB

Trail is a simple logging system for Java and Android. Create logs using the same API and the library will detect automatically in which platform the code is running.

License: MIT License

Java 100.00%
java-library android-library trail android logging logging-library

trail's Introduction

Trail Android Arsenal

Trail is a simple logging system for Java and Android. Create logs using the same API and the library will detect automatically in which platform the code is running.

Features

  • Easy and direct
  • Same API for Java/Android logging
  • 5 log levels:
    • VERBOSE
    • DEBUG
    • INFO
    • WARNING
    • ERROR
  • 5 different ways to create logs for each level
  • Register/unregister listeners for log events

Log parameters

  • Tag: The tag of the log. It can be any object from which the method toString() will be called. If missing, a default tag with the name of the class where the log is created will be used.

  • Message: The message of the log. It can be any object from which the method toString() will be called.

  • Exception: The exception of the log (if any).

Examples

 // providing only a message
 Trail.verbose("Applicatio started!");
 // providing a tag and a message
 Trail.info("LOGIN", "Successful");
 try
 {
     // do something
 }
 catch (Exception e)
 {
     // providing only an exception
     Trail.debug(e);
 }
 try
 {
     // do something
 }
 catch (NetworkException e)
 {
     // providing a tag and an exception
     Trail.warning("NETWORK_PROBLEM", e);
 }
 try
 {
     // do something
 }
 catch (SQLException e)
 {
     // providing a tag, a message and an exception
     Trail.error("DATABASE_PROBLEM", "Invalid query format", e);
 }

Utils

The library provides a method to retrieve the current location of the executing code:

 Trail.getCodeLocation()

This method returns an instance of the class CodeLocation that contains the name of the thread, the name of the class, the name of the method, the line number and the stack trace of the line of code being executed at that moment. This can be used to add more information to a log.

For example:

 Trail.verbose("LOCATION", "I am at " + Trail.getCodeLocation());

Could generate the following output:

 LOCATION: I am at [main]Sample.run:78

Listeners

The library allows to register/unregister listeners to be informed when a log is created:

 public class SampleListener implements Listener
 {
     public void run()
     {
         // register the object to receive log events
         Trail.register(this);

         // the object will be informed about the following log
         Trail.verbose("Message 1");

         // unregister the object to stop receiving log events
         Trail.unregister(this);
         
         // the object will NOT be informed about the following log
         Trail.info("Tag", "Message 2");
     }

     @Override
     public void onLog(TrailLog log)
     {
         // TODO: process log information (write in a file/database, send by network, etc.)
     }
 }

Global settings

Enable/disable log printing (enabled by default):

 // disables the log printing
 Trail.enableLogPrinting(false);

Enable/disable listeners notification (enabled by default):

 // disables the listener notification
 Trail.enableListenerNotification(false);

Download

Latest JAR:

Download

Maven (from JCenter):

<dependency>
    <groupId>com.mauriciotogneri</groupId>
    <artifactId>trail</artifactId>
    <version>1.0.0</version>
</dependency>

Adding JCenter to pom.xml:

<repositories>
    <repository>
        <id>central</id>
        <name>bintray</name>
        <url>http://jcenter.bintray.com</url>
    </repository>
</repositories>

Gradle (from JCenter):

compile 'com.mauriciotogneri:trail:1.0.0'

Adding JCenter to build.gradle:

repositories {
    maven {
        url  "http://jcenter.bintray.com" 
    }
}

Compatibility

Trail works with any version of Java and Android.

License

The MIT License (MIT)

Copyright (c) 2015 Mauricio Togneri

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

trail's People

Contributors

mauriciotogneri avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

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.