Skip to content
/ ulog-rs Public

A small logging library (not only) for hard real-time logging.

Notifications You must be signed in to change notification settings

mbr/ulog-rs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

ulog

A small logging library (not only) for hard real-time logging. Key features:

  • Asynchronous: ulog sends all log messages through a channel to another thread as soon as possible, trying to minimize the time the logging thread spends processing the log.
  • Standard log: ulog uses the de-facto standard logging facade of log, allowing access to familiar features.
  • Flexible: ulog is small but flexible, allowing different use cases other than standard file or stream logging. Log handling is done by passing a closure that is executed in a different thread.

Real-time

ulog is intended for use on embedded Linux applications that are multithreaded and require a single thread to provide hard real-time guarantees. Logs made using ulog are sent through a synchronous channel before being processed, if logging cannot be completed in constant time, the message is dropped and an error flag is set.

However, allocations have to be made before sending the log entry for asynchronouos processing, to copy fields of a log message, see the LogMessage docs for details.

Other logging crates

There are a lot of other logging crates that offer similar functionality, the closest one in focus is fastlog. While fastlog shares the focus on asynchronous logging, it is unfortunately limited to predefined ways of logging that are mostly files and stdout/-err.

About

A small logging library (not only) for hard real-time logging.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages