https://github.com/socketry/console
https://github.com/socketry/console
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/socketry/console
- Owner: socketry
- License: mit
- Created: 2019-03-10T09:44:09.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-03-10T00:48:52.000Z (11 months ago)
- Last Synced: 2025-05-08T05:35:54.485Z (9 months ago)
- Language: Ruby
- Size: 498 KB
- Stars: 54
- Watchers: 6
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Console
Provides beautiful console logging for Ruby applications. Implements fast, buffered log output.
[](https://github.com/socketry/console/actions?workflow=Test)
## Motivation
When Ruby decided to reverse the order of exception backtraces, I finally gave up using the built in logging and decided restore sanity to the output of my programs once and for all\!
## Features
- Thread safe global logger with per-fiber context.
- Carry along context with nested loggers.
- Enable/disable log levels per-class.
- Detailed logging of exceptions.
- Beautiful logging to the terminal or structured logging using JSON.
## Usage
Please see the [project documentation](https://socketry.github.io/console/) for more details.
- [Getting Started](https://socketry.github.io/console/guides/getting-started/index) - This guide explains how to use `console` for logging.
- [Command Line](https://socketry.github.io/console/guides/command-line/index) - This guide explains how the `console` gem can be controlled using environment variables.
- [Configuration](https://socketry.github.io/console/guides/configuration/index) - This guide explains how to implement per-project configuration for the `console` gem.
- [Integration](https://socketry.github.io/console/guides/integration/index) - This guide explains how to integrate the `console` output into different systems.
- [Events](https://socketry.github.io/console/guides/events/index) - This guide explains how to log structured events with a well-defined schema.
## Releases
Please see the [project releases](https://socketry.github.io/console/releases/index) for all releases.
### v1.30.0
- [Introduce `Console::Config` for fine grained configuration.](https://socketry.github.io/console/releases/index#introduce-console::config-for-fine-grained-configuration.)
### v1.29.3
- Serialized output now uses `IO#write` with a single string to reduce the chance of interleaved output.
### v1.29.2
- Always return `nil` from `Console::Filter` logging methods.
### v1.29.1
- Fix logging `exception:` keyword argument when the value was not an exception.
### v1.29.0
- Don't make `Kernel#warn` redirection to `Console.warn` the default behavior, you must `require 'console/warn'` to enable it.
- Remove deprecated `Console::Logger#failure`.
- [Consistent handling of exceptions.](https://socketry.github.io/console/releases/index#consistent-handling-of-exceptions.)
### v1.28.0
- Add support for `Kernel#warn` redirection to `Console.warn`.
## Contributing
We welcome contributions to this project.
1. Fork it.
2. Create your feature branch (`git checkout -b my-new-feature`).
3. Commit your changes (`git commit -am 'Add some feature'`).
4. Push to the branch (`git push origin my-new-feature`).
5. Create new Pull Request.
### Developer Certificate of Origin
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
### Community Guidelines
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
## See Also
- [console-adapter-rails](https://github.com/socketry/console-adapter-rails)
- [console-adapter-sidekiq](https://github.com/socketry/console-adapter-sidekiq)
- [console-output-datadog](https://github.com/socketry/console-output-datadog)
- [sus-fixtures-console](https://github.com/sus-rb/sus-fixtures-console)