Skip to content

Commit

Permalink
Change the zygote logging target from polkavm_zygote to `polkavm::z…
Browse files Browse the repository at this point in the history
…ygote`
  • Loading branch information
koute committed Mar 1, 2024
1 parent e0f8b2e commit 724f196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/polkavm/src/sandbox/linux.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ impl super::Sandbox for Sandbox {
buffer.extend_from_slice(&tmp[..index]);
tmp = &tmp[index + 1..];

log::trace!(target: "polkavm_zygote", "Child #{}: {}", child_pid, String::from_utf8_lossy(&buffer));
log::trace!(target: "polkavm::zygote", "Child #{}: {}", child_pid, String::from_utf8_lossy(&buffer));
buffer.clear();
} else {
buffer.extend_from_slice(tmp);
Expand Down

0 comments on commit 724f196

Please sign in to comment.