mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-21 10:41:50 +00:00
Windows has some funny behaviour where creating the deep-link server sometimes fails and we have to try again. Currently, each of these operations is logged as a warning when it would actually succeed later. These create unnecessary Sentry alerts. If we run out of attempts to create the deep-link server (currently 10), the entire function fails which will be logged as an error further down. The last 500 INFO and DEBUG logs will be captured as breadcrumbs together with the event, meaning we still get to see those error messages on why it failed to create the deep-link server. Resolves: #7238.