Skip to content

Releases: LeeBaeng/LLog

1.0.3

15 Mar 17:07
Compare
Choose a tag to compare

The 1.0.3 Release notes were:

※ not provide debug aar file since 1.0.3

• Provide Ignore Tag (you can block specific tag's log)
• Remove String's Extension Methods. (Change and combine to Any type)
• add parameter printLevel for print intent info and bundle.
• fix issue : print empty additional tag when it null.

1.0.02

09 Mar 13:04
Compare
Choose a tag to compare

The 1.0.02 Release notes were:

• support Extension Method for Kotlin(Extension for String, Any, Exception, Intent, Bundle Object)

  • just you can use like this.
    • Verbose, Debug & Etc : "this is log!".logV() // Just write .log#() for String & Any object.
    • Exception : e.logEX(TAG) // tag is optional
    • Intent : intent.log()
    • Bundle : bundle.log()

• add comment for kdoc

LLog 0.01.001 beta

21 Feb 06:58
Compare
Choose a tag to compare

The 0.01.001 beta Release notes were:

• support various print levels : verbose, debug, info, warn, error, except, sys
• Add App's Important log level(sys)
• it can change print level in runtime.
• highlight System and Exception Log by spline
• support print and <intent's extra>(bundle's key and values)
• Tag is not requirement field. and you can set default tag. (if send context by init() function, default tag is Application name(App:Label))
• if you didn't input tag, LLog find caller class name and set to tag automatically