A bridgebuilder game for the terminal
To enable the logs, you can use the environment variables, following the tracing enviroment filter:
RUST_LOG=TRACE
As the terminal is used to display the game, the application logs to STDERR, which we need to redirect to a file:
RUST_LOG=TRACE terminal-bridgebuilder 2>temp.log
Or another terminal:
tty
# example output /dev/pts/2
RUST_LOG=TRACE terminal-bridgebuilder 2>/dev/pts/2