LumberJill


Source link: https://github.com/lodlock/LumberJill

LumberJill

LumberJill is a logging Utility library for Android. Whenever LumberJill is used to call a log it will return:

  • originating
    • file name
    • class
    • method
    • line number
  • calling method
    • file name
    • class
    • method
    • line number

###Installation Add the following to your module's build.gradle file.

compile 'com.testfunction:lumberjill:0.8.5' 

###Implementation In order to use this library you need to provide a class that implements LumberJillCallbacks.

####Create a class which implements LumberJillCallbacks I recommend creating a class which both extends and implements adding for easier and faster access but this is not necessary.

public class L extends LumberJill implements LumberJillCallbacks {

@Override
  public boolean isDebugMode() {

return BuildConfig.DEBUG;
  
}

@Override
  public int getDefaultDepth() {

return 5;
  
}

@Override
  public String objectToString(Object object) {

String message = null;

if (object instanceof View) {

 message = "View :"+((View)object).getId();

}

return message;
  
}
 
}

isDebugMode isDebugMode() this is used to enable or disable logging functionality. I recommend returning BuildConfig.DEBUG. This ensures that no logging calls are made when the app is compiled in production mode.

getDefaultDepth getDefaultDepth() is the default element in the stack trace. In most situations 5 is what you want though if you find that LumberJill is returning the wrong line number then you are likely getting the wrong element in the stack so try adjusting this value until you arrive at the desired elements.

objectToString objectToString(Object object) allows you to create your own custom handlers for objects of a specific type not natively handled by the library. The above sample returns the int id of a View object while the example code in the repo returns the reference name of the View. It is perfectly safe to return null.

####Initiate LumberJill in Application Extend any variant of Application class and in the onCreate pass the class which implements LumberJillCallbacks to LumberJill.init.

public class ExampleApplication extends Application {

@Override
  public void onCreate() {

super.onCreate();

LumberJill.init(new L());

  
}
 
}

###Methods All log methods return filenames, classes, methods, and lines numbers.

Methods could be called directly LumberJill.d(Object) or via an extended class such as L.d(Object).

Methods Description
v(Object) Log to verbose
d(Object) Log to debug
i(Object) Log to info
w(Object) Log to warn
e(Object) Log to error
wtf(Object) Log to assert
getException(Throwable) Returns the message of the exception along with cause message if it exists
initTrace() Returns a string representation of the entire stack trace starting at the point this method is called
printExceptionTraceCauses(Throwable) Recursively prints all exception causes until there are none left

###Using an extended class such as provided example L

From here you can log anything you want throughout your app:

//String L.d("logged") 

You can also log arrays, multidimensional primitive arrays, and build your own logging logic for object types.

//Object arrays L.d(new String[]{
"item one", "item two"
}
);
  //Primitive multidimensional int array L.d(new int[][]{
new int[]{
0,1,2
}
, new int[]{
3,4,5
}

}
);
 

Resources

Easy-to-use animated clock icon.

This is light weight library for getting location updates periodically, can customize according to user requirement.

The flexible and easy to use WebView library with beautiful themes and extra options.

Android Debug Database is a powerful library for debugging databases and shared preferences in Android applications.

SwipeCardview is a recyclerview that lists products, items or etc. with using cardview. Also it aligns the card to center.

  • Android API 14+
  • Optimized for the all screen sizes
  • Easy to use
  • Image loading with Ion library

As the name describes, this is an Android library that you can use to show new messages badge and new features badge. More importantly, it has a default shadow like FAB (Floating Action Button) and more simple to use just like ordinary TextView.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes