MCPcopy Create free account
hub / github.com/effect-app/libs / dirxml

Function dirxml

repos/effect/packages/effect/src/Console.ts:283–288  ·  view source on GitHub ↗
(...args: ReadonlyArray<any>)

Source from the content-addressed store, hash-verified

281 * const testConsole: Console.Console = Object.assign(Object.create(console), {
282 * debug: (...args: ReadonlyArray<unknown>) => messages.push(args)
283 * })
284 * const program = Effect.gen(function*() {
285 * yield* Console.debug("Debug info:", { userId: 123, action: "login" })
286 * yield* Console.debug("Processing step", 1, "of", 5)
287 * })
288 *
289 * Effect.runSync(Effect.provideService(program, Console.Console, testConsole))
290 * messages // => [["Debug info:", { userId: 123, action: "login" }], ["Processing step", 1, "of", 5]]
291 * ```

Callers

nothing calls this directly

Calls 3

consoleWithFunction · 0.85
syncMethod · 0.80
dirxmlMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…