All Projects → mauriciotogneri → Trail

mauriciotogneri / Trail

Licence: mit
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.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Trail

Reckless
Reckless logging. Low-latency, high-throughput, asynchronous logging library for C++.
Stars: ✭ 358 (+2653.85%)
Mutual labels:  logging, logging-library
Quill
Asynchronous Low Latency C++ Logging Library
Stars: ✭ 422 (+3146.15%)
Mutual labels:  logging, logging-library
Exceptionless.net
Exceptionless clients for the .NET platform
Stars: ✭ 362 (+2684.62%)
Mutual labels:  logging, logging-library
Tslog
📝 tslog - Expressive TypeScript Logger for Node.js.
Stars: ✭ 321 (+2369.23%)
Mutual labels:  logging, logging-library
Fern
Simple, efficient logging for Rust
Stars: ✭ 524 (+3930.77%)
Mutual labels:  logging, logging-library
Electron Timber
Pretty logger for Electron apps
Stars: ✭ 337 (+2492.31%)
Mutual labels:  logging, logging-library
Xcglogger
A debug log framework for use in Swift projects. Allows you to log details to the console (and optionally a file), just like you would have with NSLog() or print(), but with additional information, such as the date, function name, filename and line number.
Stars: ✭ 3,710 (+28438.46%)
Mutual labels:  logging, logging-library
Easyloggingpp
Single header C++ logging library. It is extremely powerful, extendable, light-weight, fast performing, thread and type safe and consists of many built-in features. It provides ability to write logs in your own customized format. It also provide support for logging your classes, third-party libraries, STL and third-party containers etc.
Stars: ✭ 3,032 (+23223.08%)
Mutual labels:  logging, logging-library
Yii2 Slack Log
Pretty Slack log target for Yii 2
Stars: ✭ 24 (+84.62%)
Mutual labels:  logging, logging-library
Logstash Logger
Ruby logger that writes logstash events
Stars: ✭ 442 (+3300%)
Mutual labels:  logging, logging-library
Daiquiri
Python library to easily setup basic logging functionality
Stars: ✭ 308 (+2269.23%)
Mutual labels:  logging, logging-library
Yii2 Telegram Log
Telegram log target for Yii 2
Stars: ✭ 24 (+84.62%)
Mutual labels:  logging, logging-library
Scribe
The fastest logging library in the world. Built from scratch in Scala and programmatically configurable.
Stars: ✭ 304 (+2238.46%)
Mutual labels:  logging, logging-library
Mex Vocabulary
MEX Vocabulary: a lightweight machine learning interchange format
Stars: ✭ 19 (+46.15%)
Mutual labels:  logging, logging-library
Log4qt
Log4Qt - Logging for the Qt cross-platform application framework
Stars: ✭ 292 (+2146.15%)
Mutual labels:  logging, logging-library
Cocoadebug
iOS Debugging Tool 🚀
Stars: ✭ 3,769 (+28892.31%)
Mutual labels:  logging, logging-library
Logging
Microsoft Extension Logging implementation for Blazor
Stars: ✭ 165 (+1169.23%)
Mutual labels:  logging, logging-library
Timber Elixir
🌲 Great Elixir logging made easy
Stars: ✭ 226 (+1638.46%)
Mutual labels:  logging, logging-library
Izumi
Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
Stars: ✭ 423 (+3153.85%)
Mutual labels:  logging, logging-library
Nlog
NLog - Advanced and Structured Logging for Various .NET Platforms
Stars: ✭ 5,296 (+40638.46%)
Mutual labels:  logging, logging-library

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.
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].