Hey, a little off topic but I have a Quartus/IDE related question I have an error in an core_constraints.sdc file (the one I was discussing in here before but the details aren't important) I believe I could fix the error if I could print the value of a certain value— the error is on argument `-master_clock [get_ports clk_74a]` and I want to know what the value of `[get_ports clk_74a]` is Research tells me that .sdc is a standard file format, and that it is TCL, ie, it is just ordinary TCL with a certain pre-arranged namespace TCL tutorials tell me usually the way you print to stdout/stderr in tcl is `puts`, but neither `puts "TEST123"` nor `puts stderr "TEST123"` do anything at all The .sdc file is ingested during fpga compilation, and the process of ingesting it prints out many lines like "INFO:", so there must be some way to add one of those INFO: messages, like a function to call to append to the build log, and if .sdc is a standard format it is probably non-quartus-specific. But I don't know what that function would be or where to look it up.