https://github.com/mhmorgan/mhlog
A simple, thread-safe logging library.
https://github.com/mhmorgan/mhlog
log logging mh mhlog rust
Last synced: about 1 month ago
JSON representation
A simple, thread-safe logging library.
- Host: GitHub
- URL: https://github.com/mhmorgan/mhlog
- Owner: MHmorgan
- License: bsd-3-clause
- Created: 2019-11-02T15:00:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-19T10:11:51.000Z (over 4 years ago)
- Last Synced: 2025-12-13T21:59:38.904Z (7 months ago)
- Topics: log, logging, mh, mhlog, rust
- Language: Rust
- Homepage: https://docs.rs/mhlog/
- Size: 61.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://travis-ci.com/MHmorgan/mhlog)
[](https://crates.io/crates/mhlog)


[](https://gitpod.io/#https://github.com/MHmorgan/mhlog)
MHlog is a simple, thread-safe logging library.
See the [documentation](https://docs.rs/mhlog/)
Changelog
---------
### v3.0.1
- Bail bugfix
### v3.0.0
- Update interface: `err`, `warn`, `info`, `verbose`, and `debug`.
- Better stdout/stderr defaults.
- Allow customization of message prefixes.
### v2.1.2
- Bugfix
### v2.1.1
- Update crate documentation.
### v2.1.0
- Log all messages to **stderr** by default. Can be disabled with feature `log2stdout`.
- Add support for coloured log messages with `coloured` feature.
### v2.0.0
- Even simpler interface
- Reduced interface to only `err`, `warn`, `info`, and `log`
- No writing to file, only stdout (should pipe log output instead)
### v1.1.0
- Add support for verbose logging messages
### v1.0.1
- Added example