(*args)
| 162 | # Any string or object. They are converted to string and separated by space. |
| 163 | ## \ingroup python |
| 164 | def error(*args): |
| 165 | |
| 166 | stdStr = " ".join(map(str, args)) |
| 167 | IECore.Msg.output(IECore.Msg.Level.Error, __getCallContext(), stdStr ) |
| 168 | |
| 169 | __all__ = [ "setLogLevelByName", "setLogLevel", "showCallStack", |
| 170 | "exceptionInfo", "debugException", "debug", "warning", "info", "error", |
nothing calls this directly
no test coverage detected