Where do I find stderr logs?

Command output, i.e. stdout and stderr, is not logged anywhere by default. It goes to the terminal and when the terminal is closed, the output is gone forever.

If you want to store such output, you must redirect it to a file (or capture it into a variable and do something with it that ends with writing it to a file).