-
I really don't mind about the missing exif data (these were screenshots) Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
For now, you can manually clear the
We may add log settings and a UI button for this in a future release. |
Beta Was this translation helpful? Give feedback.
-
step by step manual if you're using the default docker-compose with mariadb docker-compose.ymljust for reference / might change in future https://dl.photoprism.org/docker/docker-compose.yml
connect to your docker-host then: me@docker:~$ sudo docker-compose exec mariadb bash
[sudo] password for me: 123456
root@[someUid]:/# mariadb -p
Enter password: please_change
MariaDB [(none)]> use photoprism
MariaDB [photoprism]> TRUNCATE errors;
Query OK, 0 rows affected (0.021 sec) don't know why it states 0 rows affected, however the errors log are cleared now. |
Beta Was this translation helpful? Give feedback.
For now, you can manually clear the
errors
table: https://mariadb.com/kb/en/truncate-table/We may add log settings and a UI button for this in a future release.