Find firefox log file

firefoxlogs

Where can I find firefox log file on Centos 6?

Unfortunately, firefox doesn't write its log in /var/log/message .

Best 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
Related Question