diff options
author | Alex <alex@adnab.me> | 2024-03-20 13:54:18 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-03-20 13:54:18 +0000 |
commit | 30abf7e086359c914b1e083d3eec0f4e5fa37351 (patch) | |
tree | fed2a61dd3e89bbbd3a80cd9b97d14b66eba1efd /Cargo.lock | |
parent | 26310f3242319c9ad093f5121cff0fe0c0108542 (diff) | |
parent | 84018be8622b582ad8853df042d10f0e122e6316 (diff) | |
download | garage-30abf7e086359c914b1e083d3eec0f4e5fa37351.tar.gz garage-30abf7e086359c914b1e083d3eec0f4e5fa37351.zip |
Merge pull request 'Add support to logging to syslog (based on patch by @jirutka)' (#784) from syslog into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/784
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1322,6 +1322,7 @@ dependencies = [ "sha2", "static_init", "structopt", + "syslog-tracing", "timeago", "tokio", "toml", @@ -3931,6 +3932,17 @@ dependencies = [ ] [[package]] +name = "syslog-tracing" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "340b1540dcdb6b066bc2966e7974f977ab1a38f21b2be189014ffb0cc2405768" +dependencies = [ + "libc", + "tracing-core", + "tracing-subscriber", +] + +[[package]] name = "system-configuration" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" |