bufferSentryEvent buffers a Sentry event to disk so that Report can upload it later.
(event *sentry.Event)
| 187 | // bufferSentryEvent buffers a Sentry event to disk so that Report can upload it |
| 188 | // later. |
| 189 | func bufferSentryEvent(event *sentry.Event) { |
| 190 | bufferEvent(filepath.Join(sentryBufferDir, string(event.EventID)+".json"), event) |
| 191 | } |