| 138 | } |
| 139 | |
| 140 | void SchemaValidityDebug |
| 141 | (void * /*ctx*/, const char* message, ...) |
| 142 | { |
| 143 | const int ERROR_MESSAGE_SIZE = 256; |
| 144 | char error[ERROR_MESSAGE_SIZE]; |
| 145 | va_list arg_ptr; |
| 146 | |
| 147 | va_start(arg_ptr, message); |
| 148 | vsnprintf(error, ERROR_MESSAGE_SIZE, message, arg_ptr); |
| 149 | va_end(arg_ptr); |
| 150 | |
| 151 | std::cout << "Schema validity debug: '" << error << "' " << "\n"; |
| 152 | } |
| 153 | |
| 154 | |
| 155 | void SchemaGenericErrorHandler |
nothing calls this directly
no outgoing calls
no test coverage detected