You must be registered to see the links
says it should be here:
~/Library/Logs/Company Name/Product Name/Player.log
so
~/Library/Logs/Droid Productions/Love of Magic/Player.log
Yup! It's there.
Some of the directories (folders) that make up the user environment are set up so that the GUI interface has a hard time getting directly to them. For example if I open a finder window in my home area (directory) the Library folder is not displayed. You have to use a terminal session to get at it.
Issued from my home directory in a terminal session. Note the use of backslash to escape spaces in the path:
mac$ cd ~
dhcp31:~ mac$ pwd
/Users/mac
dhcp31:~ mac$ ls Library/Logs/Droid\ Productions/Love\ of\ Magic/
Player-prev.log Player.log
Updated information:
dhcp31:~ mac$ ls -ld Library/
drwx--x--x@ 82 mac staff 2624 Mar 17 2021 Library/
Note the @ at the end of the file protections. This indicates that the Library directory has extended file attributes.
We can display the attribute information by adding the -@ to the ls command
dhcp31:~ mac$ ls -ld -@ Library/
drwx--x--x@ 82 mac staff 2624 Mar 17 2021 Library/
com.apple.FinderInfo 32
This attribute provides additional information to the finder on how to treat the file or directory. I haven't dug through the details, but I'm reasonably sure that this tells the finder to hide the directory from the GUI display, and probably other special handling as well.