(*args)
| 153 | # Any string or object. They are converted to string and separated by space. |
| 154 | ## \ingroup python |
| 155 | def info(*args): |
| 156 | |
| 157 | stdStr = " ".join(map(str, args)) |
| 158 | IECore.Msg.output(IECore.Msg.Level.Info, __getCallContext(), stdStr ) |
| 159 | |
| 160 | # Sends error messages to the current message handler. |
| 161 | # Parameters: |
nothing calls this directly
no test coverage detected