What problem does it solve? When a designer script or generated template in an Intent Architect module behaves unexpectedly, there is no interactive debugger available, making it impossible to see actual runtime values without a dedicated diagnostic approach. ## Core Features & Use Cases - Designer Script Logging: Add temporary console.log, console.warn, or console.error calls inside run_designer_script code and read the captured output returned in the result. - Module C# Logging: Write runtime values from templates, factory extensions, and registrations to Intent Architect's log file using the Logging.Log API with Debug, Info, Warning, or Failure levels. - Log File Discovery: Locate the day-rolling, per-process log files under the OS temp directory in logs/software-factory or logs/module-tasks, then grep for a distinctive prefix like [AI-DEBUG] to isolate your output. - Use Case: A template generates wrong attribute counts for a model. Add a prefixed Logging.Log.Debug line, rerun the Software Factory, find the newest log file, grep for the prefix, confirm the actual value, then remove the temporary statement. ## Quick Start Add a temporary [AI-DEBUG] log statement to my module template, run the Software Factory, and show me the matching lines from the newest Intent Architect log file.