(key: K)
| 79 | } |
| 80 | |
| 81 | removeIgnore(key: K): Effect.Effect<void> { |
| 82 | return Effect.catchAllCause(this.remove(key), (cause) => |
| 83 | Effect.annotateLogs(Effect.logDebug(cause), { |
| 84 | module: "ResourceMap", |
| 85 | method: "removeIgnore", |
| 86 | key |
| 87 | })) |
| 88 | } |
| 89 | } |
no test coverage detected