Giter Club home page Giter Club logo

chamber's Introduction

Chamber - A easy log viewing tool

Introduction

Welcome to Chamber, a intuitive logging package for Flutter apps. Designed to help track issues on devices outside of the emulator world.

Features

  • Easy Logging: Log messages with optional categorization.
  • Flexible Retrieval: Retrieve logs based on categories.
  • Clear Logs with Ease: Clear all logs or specific categories.
  • In-App Log Display: View logs in a user-friendly dialog.

Getting Started

To get started with Chamber, follow these simple steps:

Installation

Add Chamber to your Flutter project by including it in your pubspec.yaml file:

dependencies:
  chamber: ^1.2.0

Usage

Here's a quick guide to using Chamber in your app:

Logging Messages

Chamber.log("User logged in successfully", "auth");
Chamber.log("This is a general log message"); // Defaults to "general" key.

Retrieving Logs

List<String> authLogs = Chamber.get("auth");
List<String> generalLogs = Chamber.get();

Clearing Logs

Chamber.clear("auth"); // Clears only 'auth' logs.
Chamber.clear(); // Clears all logs.

Displaying Logs

Chamber.display(context); // Displays logs in a dialog.
Chamber.display(context, "auth"); // Displays logs of a specific key in a dialog.

Contributing

Contributions to Chamber are welcome!

License

Chamber is released under the MIT License.

Support

If you encounter any issues or have suggestions, please open an issue on our GitHub repository.

chamber's People

Contributors

al4nnw avatar

Watchers

 avatar

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.