(*args)
| 135 | # Any string or object. They are converted to string and separated by space. |
| 136 | ## \ingroup python |
| 137 | def debug(*args): |
| 138 | |
| 139 | stdStr = " ".join(map(str, args)) |
| 140 | IECore.Msg.output(IECore.Msg.Level.Debug, __getCallContext( withLineNumber = True ), stdStr ) |
| 141 | |
| 142 | # Sends warning messages to the current message handler. |
| 143 | # Parameters: |
nothing calls this directly
no test coverage detected