Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jakkusakura/tracing-shared-rs


https://github.com/jakkusakura/tracing-shared-rs

Last synced: about 6 hours ago
JSON representation

Awesome Lists containing this project

README

        

# tracing-shared-rs

Share a logger between a dylib/cdylib and the main binary

## Usage

```toml
[dependencies]
tracing-shared = "0.1"

```

checkout examples/example.rs

### cdylib's case

```rust
use tracing_shared::SharedLogger;

fn main() {
let dylib = unsafe { libloading::Library::new(dylib) }.expect("error loading dylib");
let setup_logger: FnSetupLogger = unsafe { *dylib.get(b"setup_shared_logger_ref").unwrap() };
let run: FnRun = unsafe { *dylib.get(b"run").unwrap() };
let logger = SharedLogger::new();
setup_logger(&logger);
run("cdylib")
}
```

### dylib's case

```rust
use tracing_shared::SharedLogger;

fn main() {
let logger = SharedLogger::new();
example_lib::setup_shared_logger_ref(&logger);
example_lib::run("dylib");
}
```