Giter Club home page Giter Club logo

myloglibrary's Introduction

MyLog - Library

Simple android logger (2020)

Java version: Download

Kotlin version: Download

Android Arsenal License

Medium article about this library

https://bit.ly/2Noc2SO

Installation

  • Add the dependency from jCenter to your app's (not project) build.gradle file:
repositories {
    jcenter()
}

dependencies {
    implementation 'net.alexandroid.utils:mylogkt:1.13'
}
  • Consider adding following proguard rule:
# Remove all log* methods from prpject
-assumenosideeffects class net.alexandroid.utils.mylogkt.MyLogKtKt { *; }
# Remove specific logger methods
-assumenosideeffects class net.alexandroid.utils.mylogkt.MyLogKtKt {
    public static *** logD$default(...);
    public static *** logW$default(...);
}
  • Next (All the settings below are optional):
public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        
        // Kotlin from Kotlin (Optional, to allow isPackageNameVisible = true)
        MyLogKt.packageName = packageName
        MyLogKt.isLogsShown = BuildConfig.DEBUG
        MyLogKt.tag = "STATIC CUSTOM TAG"

        // Other Kotlin version configurations
        MyLogKt.packageName = ""
        MyLogKt.isLogsShown = true
        MyLogKt.isThreadNameVisible = false
        MyLogKt.isTimeVisible = true
        MyLogKt.isPackageNameVisible = false
        MyLogKt.isClassNameVisible = true
        MyLogKt.isMethodNameVisible = true
        MyLogKt.isLengthShouldWrap = true

        MyLogKt.classNameLength = 15
        MyLogKt.packageAndClassNameLength = 35
        MyLogKt.methodNameLength = 15
        MyLogKt.threadNameLength = 6
        MyLogKt.timeFormat = "HH:mm:ss.SSS"
    }
}
  • Also don't forget to add: android:name=".MyApplication" at your application tag in AndroidManifest.xml
 <application
        android:name=".MyApplication"
        ...>

How I use it

    logD("Empty 1")
    logI("Empty 2")
    logW("Empty 3")
    logE("Empty 4")
    logV("Empty 5")

   // Same functions
    debug("Empty 1")
    info("Empty 2")
    warn("Empty 3")
    error("Empty 4")
    verbose("Empty 5")

    logD("Custom tag example 1", "CustomTag1")

    logE("Show Exception", t = NullPointerException())
}

Release notes

  • 1.13(kotlin version) - Added "debug, info, warn, error, verbose" functions
  • 1.12(kotlin version) - Allow more configurations
  • 1.11(kotlin version) - Refactoring, classes/methods wrapping
  • 1.9 (kotlin version) - Allow logging functions to be empty
  • 1.8 (kotlin version) - Remove init, thread name instead of tread id
  • 1.7 (kotlin version) - Koltin library bug fixes
  • 1.5 - Bug fix + Kotlin version
  • 1.4 - Custom tag support
  • 1.3 - AndroidX migration, Target 29
  • 1.2 - Add MyLog.e(String msg, Throwable t) - (by @davidHarush), 2 new constructors

Stage 1 - Remove logcat headers

Usualy logs look like below:

First go to Configure Logcat Header:

Uncheck all options and press OK:

Now your logs looks like below:

Stage 2 - Customize logs color scheme

File -> Settings -> Editor -> Colors & Fonts -> Android Logcat

Stage 3 - Library customization

Default:

MyLog.setPackageNameVisibility(true); 
MyLogKt.isPackageNameVisible = true

MyLog.setIsTimeVisible(false);
MyLogKt.isTimeVisible = false

MyLog.setThreadIdVisibility(true); 
MyLogKt.isThreadIdVisible = true




License

Copyright 2017 Alexey Korolev

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Deprecated - Java version => Installation

  • Add the dependency from jCenter to your app's (not project) build.gradle file:
repositories {
    jcenter()
}

dependencies {
    implementation 'net.alexandroid.utils:mylog:1.5'
}
  • Next:
public class MyApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        
        // Java (Mandatory)
        MyLog.init(this, "MyLog", BuildConfig.DEBUG); // Context,  Tag,   Show logs?
    }
}

How I use it

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    
    // Java lib
    MyLog.setTag("STATIC CUSTOM TAG");
    MyLog.d("Empty 1");
    MyLog.i("Empty 2");
    MyLog.w("Empty 3");
    MyLog.e("Empty 4");

    MyLog.d("CustomTag", "Custom tag example message");

    MyLog.e("Show Exception", new NullPointerException());
}

myloglibrary's People

Contributors

pulimet avatar

Stargazers

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

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

myloglibrary'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.