anylog 0.6.4

A library for Rust that attempts to parse single log lines into records.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! `anylog` is a crate that tries to parse any potential log message it
//! would encounter and extract timestamp and message from it.  It supports a
//! wide range of formats and tries them all.
//!
//! This crate is used by [Sentry](https://sentry.io/) to parse logfiles into
//! breadcrumbs.

mod parser;
mod types;

pub use crate::types::LogEntry;