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