Logs won't show
Following the instructions in setting the env variable, I was unable to get logs to show. I'm follow the Unity tutorial for Microsoft MixedReality WebRTC, and I need to see the logs to get the remote peer id.

Tried set DEBUG=*dss and set DEBUG=dss* also.
Seriously.
What am I doign wrong?

So apparently you must export DEBUG=dss* first using a bash shell.
Then set, and it works. Don't know why that is or what the Windows powershell equivalent is.

Thanks, that saved a bit of time. For anyone interested in the "powershell way":
$env:DEBUG='dss*'
Thank you guys that helped me much !
would be nice to include this in README
Thanks, that saved a bit of time. For anyone interested in the "powershell way":
$env:DEBUG='dss*'
Thanks too much