RFDT Solver and WiTwin Simulator are undergoing internal testing as we prepare for public release. The functions are limited. Sign up to receive updates.
The Console panel displays backend Python print statements, errors, warnings, and system messages in real-time. It provides essential debug output and backend monitoring via WebSocket-based streaming with minimal latency.
from witwin import Console# Simple messagesConsole.log("Processing complete")Console.warn("Memory usage high: 85%")Console.error("Failed to connect to database")# With source tagConsole.log("Rendering started", source="Camera")Console.log("Frame rendered in 16ms", source="Camera")
from witwin import Consoleimport tracebacktry: result = process_data()except Exception as e: Console.error(f"Processing failed: {e}") traceback.print_exc() # Full stack trace