(orgID uuid.UUID)
| 212 | } |
| 213 | |
| 214 | func WithOrgID(orgID uuid.UUID) GeneratorOption { |
| 215 | return func(a *GeneratorOptions) error { |
| 216 | a.OrgID = &orgID |
| 217 | return nil |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | // digest generates a hash of the log entry |
| 222 | // that can be used to detect duplicates |
no outgoing calls