Browse Source

Remove some output messages

tags/v0.0.0-test.4
Philipp Oppermann 3 years ago
parent
commit
6db2328dd8
2 changed files with 0 additions and 8 deletions
  1. +0
    -7
      runtime/src/main.rs
  2. +0
    -1
      runtime/src/operator/shared_lib.rs

+ 0
- 7
runtime/src/main.rs View File

@@ -72,13 +72,6 @@ async fn main() -> eyre::Result<()> {
)
})?;

println!(
"Received input {} for operator {}: {}",
input.id,
input.target_operator,
String::from_utf8_lossy(&input.data)
);

operator
.handle_input(input.id.clone(), input.data)
.wrap_err_with(|| {


+ 0
- 1
runtime/src/operator/shared_lib.rs View File

@@ -60,7 +60,6 @@ impl<'lib> SharedLibraryOperator<'lib> {
let data_start = input.value.as_slice().as_ptr();
let data_len = input.value.len();

println!("Received input {}", input.id);
let output = |id: &str, data: &[u8]| -> isize {
let result = self.events_tx.blocking_send(OperatorEvent::Output {
id: id.to_owned().into(),


Loading…
Cancel
Save