Oct. 3 windows release not signing rewards

Could you write me a full-fledged command correctly. Since I can’t do anything :pensive:

$Env:RUST_LOG=info,subspace_farmer=debug
subspace-farmer ...

Gives the following error

Probably $Env:RUST_LOG="info,subspace_farmer=debug" then. This is not Subspace-specific and I’m not using Windows myself, do some research and feel free to contribute to docs.

1 Like

I use a command that looks a bit like this:

$env:RUST_LOG="info,subspace_farmer=debug"; `
subspace-node.exe `
  --chain gemini-3f `
  --execution wasm `
  ...

Note the semi-colon and the line continuation backtick at the end of the line where I set the env variable.

Can you please tell me what I did wrong?

Put the options in quotes. Like this:

$env:RUST_LOG="info,subspace_service=trace"; `

image
This is correct command to set environment for rust debug in farmer >> $env:rust_log = “subspace_farmer=debug”

1 Like