1 Answer
firefox writes to the session log;
on older systems (pre-systemd) that's saved in ~/.xsession-errors so try running:
grep firefox ~/.xsession-errors
on newer, systemd-based setups you can view (as a user) the relevant entries in the journal with:
journalctl -qb /usr/bin/firefox
Your Answer