|
I'm on Windows 11. I want to create an issue where oculante just close itself at launch. There is nothing in the Event Viewer or |
Replies: 1 comment 2 replies
|
Hi! First of all thanks for spotting this and helping to improve Oculante! Oculante logs to stdout by default, so if you start the program in a terminal, you should see something. I am using env_logger in oculante, which sets log levels based on the RUST_LOG enviroment variable. There is more background info here: basically, you would have to set RUST_LOG to debug in the terminal and then start Oculante - for example |
Hi! First of all thanks for spotting this and helping to improve Oculante!
Oculante logs to stdout by default, so if you start the program in a terminal, you should see something.
I am using env_logger in oculante, which sets log levels based on the RUST_LOG enviroment variable. There is more background info here:
https://docs.rs/env_logger/latest/env_logger/
basically, you would have to set RUST_LOG to debug in the terminal and then start Oculante - for example
set RUST_LOG=debugand thenoculante.exe. Please let me know if I can help of if you find out more!