0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-13 18:48:37 -05:00

Minor fix on telemetry http handler.

This commit is contained in:
Andrey Antukh 2021-01-18 23:27:30 +01:00
parent 43ac9a9a22
commit 43d32af540

View file

@ -83,7 +83,9 @@
:data (dissoc params :instance-id))]
(px/run! executor (partial process-request cfg)))
(catch Exception e
(log/errorf e "Unexpected error.")))
;; We don't want notify user of a error, just log it for posible
;; future investigation.
(log/warnf e "Unexpected error on telemetry.")))
{:status 200
:body "OK\n"})