Skip to content

Commit

Permalink
chore: Copy the in-mem logging functions to the FFI crate
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Sep 4, 2024
1 parent 8a5150e commit edc6a23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pact_ffi/src/log/inmem_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub(crate) struct InMemBuffer { }

impl Write for InMemBuffer {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
write_to_log_buffer(buf);
pact_matching::logging::write_to_log_buffer(buf);
Ok(buf.len())
}

Expand Down

0 comments on commit edc6a23

Please sign in to comment.