Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/devdocs/Writing Smart Contracts/Debug-Logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down