The mock contracts log every FHE operation to the console. This makes it easy to inspect what your contracts are doing under the hood during tests.Documentation Index
Fetch the complete documentation index at: https://cofhe-docs.fhenix.zone/llms.txt
Use this file to discover all available pages before exploring further.
What gets logged
Each FHE operation emits a formatted log entry showing the operation name, the input and output operand hashes (truncated), and the security zone:withLogs(name, fn) — recommended
Wraps a block of code with logging enabled and prints a labeled box around the output. The name appears as the header so you can identify which call produced which operations.
withLogs enables logging before the closure runs and disables it after, so only operations from within that block appear in the output.
enableLogs() / disableLogs() — manual
For finer-grained control, you can enable and disable logging manually:
enableLogs accepts an optional label string. If provided, it prints a labeled header immediately — useful when you want to mark a section of output at a known point.Default logging behavior
Logging is enabled by default. You can turn it off globally in your Hardhat config:hardhat.config.ts