(...args: ReadonlyArray<any>)
| 294 | * @since 2.0.0 |
| 295 | */ |
| 296 | export const debug = (...args: ReadonlyArray<any>): Effect.Effect<void> => |
| 297 | consoleWith((console) => |
| 298 | effect.sync(() => { |
| 299 | console.debug(...args) |
| 300 | }) |
| 301 | ) |
| 302 | |
| 303 | /** |
| 304 | * Displays an interactive list of the properties of the specified object, optionally using console-specific inspection options for debugging complex data structures. |
nothing calls this directly
no test coverage detected