1

When an application error occurs, Ubuntu prompts asking if you want to submit it and/or hide future errors of this type (e.g. a particular error from a particular application). I have opted to hide certain errors (but not others), but now I've changed my mind. Where can I find a list of the individual errors I've hidden, and opt to show some of them?

As a second-place alternative, can I choose to just show all errors again?

lofidevops
  • 21,912

1 Answers1

1

Various logs of errors can be found here:

/var/log

They can be read by opening a Terminal and typing:

cd /var/log
less *name_of_logfile*

The rest of the answer can be found here: How do I enable or disable Apport?

Edit: also you can try to modify particular type of errors by editing /etc/apport/crashdb.conf:

sudo -H gedit /etc/apport/crashdb.conf
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407