All Projects → liangjingkanji → LogCat

liangjingkanji / LogCat

Licence: Apache-2.0 license
🐞 Android Logcat 日志工具

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to LogCat

slack-logger
Slack logger that sends pretty formatted messages to a Slack channel.
Stars: ✭ 15 (-70.59%)
Mutual labels:  log
json-log-viewer
Powerful terminal based viewer for JSON logs using ncurses.
Stars: ✭ 171 (+235.29%)
Mutual labels:  log
gologger
A concurrent, fast queue/service worker based filesystem logging system perfect for servers with concurrent connections
Stars: ✭ 16 (-68.63%)
Mutual labels:  log
got
An enjoyable golang test framework.
Stars: ✭ 234 (+358.82%)
Mutual labels:  log
gen-git-log
自动生成git commit记录用以统计个人项目周报,全组项目周报,版本差异记录等
Stars: ✭ 35 (-31.37%)
Mutual labels:  log
missionlog
🚀 lightweight logging • supports level based filtering and tagging • weighs in at around 500 bytes
Stars: ✭ 19 (-62.75%)
Mutual labels:  log
logwatch
日志采集工具
Stars: ✭ 22 (-56.86%)
Mutual labels:  log
EasyNetworking
🛰Easy networking with async/await
Stars: ✭ 27 (-47.06%)
Mutual labels:  log
paStash
pastaʃ'ʃ = Spaghetti I/O Event Data Processing, Interpolation, Correlation and beyond 🍝
Stars: ✭ 89 (+74.51%)
Mutual labels:  log
ptkdev-logger
🦒 Beautiful Logger for Node.js: the best alternative to the console.log statement
Stars: ✭ 117 (+129.41%)
Mutual labels:  log
phpunit-extensions
📦 Some cool extensions for PHPUnit
Stars: ✭ 28 (-45.1%)
Mutual labels:  log
WELA
WELA (Windows Event Log Analyzer): The Swiss Army knife for Windows Event Logs! ゑ羅(ウェラ)
Stars: ✭ 442 (+766.67%)
Mutual labels:  log
PoShLog
🔩 PoShLog is PowerShell cross-platform logging module. It allows you to log structured event data into console, file and much more places easily. It's built upon great C# logging library Serilog - https://serilog.net/
Stars: ✭ 108 (+111.76%)
Mutual labels:  log
consono
The most correct, informative, appealing and configurable variable inspector for JavaScript
Stars: ✭ 17 (-66.67%)
Mutual labels:  log
cruzdb
Append-only key-value database on a distributed shared-log
Stars: ✭ 47 (-7.84%)
Mutual labels:  log
Multiplatform-Log
Kotlin Multi Platform Logger, for android an ios : Logcat & print
Stars: ✭ 49 (-3.92%)
Mutual labels:  log
analog
🔎 Flexible web-based real-time log viewer
Stars: ✭ 15 (-70.59%)
Mutual labels:  log
mongoose-morgan
An npm package for saving morgan log inside MongoDB
Stars: ✭ 14 (-72.55%)
Mutual labels:  log
ULogViewer
Cross-Platform Universal Log Viewer.
Stars: ✭ 64 (+25.49%)
Mutual labels:  log
Abp.Castle.NLog
Abp的NLog日志输出模块。
Stars: ✭ 15 (-70.59%)
Mutual labels:  log

LogCat

1600

轻量级的日志工具

特点

  • 日志全局开关
  • 日志全局标签
  • 日志全局Hook
  • 日志代码位置信息
  • 格式化输出JSON
  • 超长日志分段输出

使用

LogCat.setDebug(BuildConfig.DEBUG) // 全局开关

LogCat.d("log message")

安装

添加远程仓库根据创建项目的 Android Studio 版本有所不同

Android Studio Arctic Fox以下创建的项目 在项目根目录的 build.gradle 添加仓库

allprojects {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

Android Studio Arctic Fox以上创建的项目 在项目根目录的 settings.gradle 添加仓库

dependencyResolutionManagement {
    repositories {
        // ...
        maven { url 'https://jitpack.io' }
    }
}

然后在 module 的 build.gradle 添加依赖框架

implementation 'com.github.liangjingkanji:LogCat:1.2.3'

License

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