(pluginId: string, hook: string, cause: unknown)
| 835 | isStorageFailure(cause) ? cause : new StorageError({ message, cause }); |
| 836 | |
| 837 | const pluginStorageFailure = (pluginId: string, hook: string, cause: unknown): StorageFailure => |
| 838 | storageFailureFromUnknown(`${hook} failed for plugin ${pluginId}`, cause); |
| 839 | |
| 840 | // oxlint-disable executor/no-instanceof-error, executor/no-unknown-error-message -- boundary: render an arbitrary failure into one readable log field |
| 841 | /** One-line rendering of a failed rebuild, for the operator-facing warning. |
no test coverage detected