| 63 | } |
| 64 | |
| 65 | void handle( MessageHandler::Level level, const std::string &context, const std::string &message ) override |
| 66 | { |
| 67 | ScopedGILLock gilLock; |
| 68 | try |
| 69 | { |
| 70 | this->methodOverride( "handle" )( level, context, message ); |
| 71 | } |
| 72 | |
| 73 | catch( const error_already_set & ) |
| 74 | { |
| 75 | IECorePython::ExceptionAlgo::translatePythonException(); |
| 76 | } |
| 77 | |
| 78 | } |
| 79 | |
| 80 | }; |
| 81 |
nothing calls this directly
no test coverage detected