It's more the art side of programming.
You don't want to log everything. But you will want to log the most crucial parts of the system.
Just think about your program in a broad sense and try to identify which information you will want in case something breaks in production.
For a start, all the core logic modules of your application should have logging functionality. The decorative parts e.g. UI/animation shouldn't need logging.
IMHO, logging every method entry/exits is overkill and will also produce a noise especially since you can just embed a stack trace.
And for performance, use a profiler.
