From d8462a4ff78a956bd10d27871b23a5596f99ca36 Mon Sep 17 00:00:00 2001 From: defaultpepe Date: Mon, 26 Jan 2026 07:46:18 +0000 Subject: [PATCH] Update Debug-Logging.md --- docs/devdocs/Writing Smart Contracts/Debug-Logging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/devdocs/Writing Smart Contracts/Debug-Logging.md b/docs/devdocs/Writing Smart Contracts/Debug-Logging.md index a05cd7f6..801e5bf1 100644 --- a/docs/devdocs/Writing Smart Contracts/Debug-Logging.md +++ b/docs/devdocs/Writing Smart Contracts/Debug-Logging.md @@ -71,7 +71,7 @@ contract EncryptedNumberContract { // DEBUG: Log the intermediate result uint256 debug_Result = FHE.decrypt(result); // Log the result - Console.log(result); + Console.log(int256(debug_Result)); // Perform more operations euint64 finalResult = result * FHE.asEuint64(encryptedA);